wok annotate ruby-enterprise/receipt @ rev 11454
ayttm: add xorg-libXpm to depends
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Sat Dec 17 11:42:21 2011 +0100 (2011-12-17) |
parents | 0ed87241adde |
children | b7319995b37e |
rev | line source |
---|---|
erjo@9425 | 1 # SliTaz package receipt. |
erjo@9425 | 2 |
erjo@9425 | 3 PACKAGE="ruby-enterprise" |
erjo@9425 | 4 VERSION="1.8.7-2011.03" |
erjo@9425 | 5 CATEGORY="development" |
erjo@9425 | 6 SHORT_DESC="Ruby Enterprise Edition" |
erjo@9425 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@9425 | 8 DEPENDS="libdb ncurses libssl readline zlib" |
erjo@9425 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@9425 | 10 WEB_SITE="http://www.rubyenterpriseedition.com/" |
erjo@9425 | 11 WGET_URL="http://rubyenterpriseedition.googlecode.com/files/$TARBALL" |
erjo@9425 | 12 BUILD_DEPENDS="zlib-dev" |
erjo@9425 | 13 SUGGESTED="tk xorg-libXss gdbm" |
erjo@9425 | 14 PROVIDES="ruby" |
erjo@9425 | 15 TAGS="ruby language programming" |
erjo@9425 | 16 |
erjo@9425 | 17 # Rules to configure and make the package. |
erjo@9425 | 18 compile_rules() |
erjo@9425 | 19 { |
erjo@9425 | 20 cd $src/source |
pankso@9896 | 21 ./configure && make && make install |
erjo@9425 | 22 } |
erjo@9425 | 23 |
erjo@9425 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@9425 | 25 genpkg_rules() |
erjo@9425 | 26 { |
erjo@9425 | 27 mkdir -p $fs/usr/lib |
pankso@9896 | 28 cp -a $install/usr/lib/ruby $fs/usr/lib |
pankso@9896 | 29 cp -a $install/usr/bin $fs/usr |
erjo@9425 | 30 |
erjo@9425 | 31 # Remove devel files --> ruby-enterprise-dev |
pankso@9897 | 32 #rm $fs/usr/lib/ruby/1.8/i486-linux/*.h |
pankso@9897 | 33 rm $fs/usr/lib/ruby/1.8/i686-linux/*.h |
erjo@9425 | 34 |
erjo@9425 | 35 # Remove doc --> ruby-enterprise-doc |
erjo@9425 | 36 rm -rf $fs/usr/lib/ruby/1.8/rdoc |
erjo@9425 | 37 } |
erjo@9425 | 38 |