wok-6.x annotate ruby-gtk2/receipt @ rev 25565
Reenable rpc for glibc, fix gpxe grub4dos receipt, fix linld url
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Tue May 09 17:24:00 2023 +0000 (18 months ago) |
parents | eb6049f398cb |
children |
rev | line source |
---|---|
pankso@12250 | 1 # SliTaz package receipt. |
pankso@12250 | 2 |
pankso@12250 | 3 # Note: uses the full Ruby/GNOME2 package but compiles only the selected |
pankso@12250 | 4 # GTK+ & Glade parts. Select parts to compile on the following line. |
pankso@12250 | 5 # Any unwanted extras (i.e. GNOME stuff) will be ignored. |
pankso@12250 | 6 |
pascal@15350 | 7 #SELECTED_LIBS="glib2 pango atk gdk_pixbuf2 libglade gtk2" |
pascal@15350 | 8 SELECTED_LIBS="glib2 pango atk gdk_pixbuf2 gtk2" |
pankso@12250 | 9 |
pankso@12250 | 10 PACKAGE="ruby-gtk2" |
pankso@12250 | 11 VERSION="1.0.3" |
pankso@12250 | 12 CATEGORY="development" |
pankso@12250 | 13 SHORT_DESC="GTK+ bindings for Ruby." |
pankso@12250 | 14 MAINTAINER="ben@seawolfsanctuary.com" |
pascal@15313 | 15 LICENSE="LGPL2.1" |
pankso@12250 | 16 SOURCE="ruby-gnome2-all" |
pankso@12250 | 17 TARBALL="$SOURCE-$VERSION.tar.gz" |
pankso@12250 | 18 WEB_SITE="http://ruby-gnome2.sourceforge.jp/" |
pankso@12250 | 19 WGET_URL="$SF_MIRROR/ruby-gnome2/$TARBALL" |
pankso@12250 | 20 |
pankso@12250 | 21 DEPENDS="ruby gtk+ xorg-libXp xorg-libXxf86vm" |
pankso@12250 | 22 BUILD_DEPENDS="ruby ruby-dev gtk+-dev xorg-libXp-dev xorg-libXxf86vm-dev ruby-pkgconfig" |
pankso@12250 | 23 |
pankso@12250 | 24 TAGS="ruby programming gtk development" |
pankso@12250 | 25 |
pascal@24082 | 26 current_version() |
pascal@24082 | 27 { |
pascal@24082 | 28 local PKG=ruby-gnome2 |
pascal@24082 | 29 wget -O - https://sourceforge.net/projects/$PKG/files/$PKG 2>/dev/null | \ |
pascal@24082 | 30 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ |
pascal@24082 | 31 sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q" |
pascal@24082 | 32 } |
pascal@24082 | 33 |
pankso@12250 | 34 # Rules to configure and make the package. |
pankso@12250 | 35 compile_rules() |
pankso@12250 | 36 { |
pankso@12250 | 37 cd $src |
pascal@15313 | 38 sed -i 's|<glib/.*|<glib.h>|' glib2/ext/glib2/rbglib_*.c |
pankso@12250 | 39 |
pankso@12250 | 40 # Select the parts to compile here: |
pankso@12250 | 41 for LIB in $SELECTED_LIBS; do |
pankso@12250 | 42 ruby extconf.rb $LIB && \ |
pankso@12250 | 43 make $MAKEFLAGS && \ |
pankso@12250 | 44 make DESTDIR=$DESTDIR install |
pankso@12250 | 45 done |
pankso@12250 | 46 |
pankso@12250 | 47 } |
pankso@12250 | 48 |
pankso@12250 | 49 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@12250 | 50 genpkg_rules() |
pankso@12250 | 51 { |
pankso@12250 | 52 mkdir -p $fs/usr |
pascal@15313 | 53 cp -a $install/usr $fs/ |
pankso@12250 | 54 } |