wok annotate ruby-enterprise/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (16 months ago)
parents 2f230197370e
children
rev   line source
erjo@9425 1 # SliTaz package receipt.
erjo@9425 2
erjo@9425 3 PACKAGE="ruby-enterprise"
pascal@13039 4 VERSION="1.8.7-2012.02"
erjo@9425 5 CATEGORY="development"
erjo@9425 6 SHORT_DESC="Ruby Enterprise Edition"
erjo@9425 7 MAINTAINER="erjo@slitaz.org"
pascal@15068 8 LICENSE="GPL2"
erjo@9425 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@9425 10 WEB_SITE="http://www.rubyenterpriseedition.com/"
pascal@24982 11 WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/$TARBALL"
erjo@9425 12 SUGGESTED="tk xorg-libXss gdbm"
pascal@13024 13 PROVIDE="ruby"
erjo@9425 14 TAGS="ruby language programming"
erjo@9425 15
pascal@15068 16 DEPENDS="libdb ncurses libssl readline zlib"
pascal@15068 17 BUILD_DEPENDS="zlib-dev"
pascal@15068 18
pascal@24459 19 # What is the latest version available today?
pascal@24459 20 current_version()
pascal@24459 21 {
pascal@24459 22 wget -O - http://www.rubyenterpriseedition.com/download.html 2>/dev/null | \
pascal@24459 23 sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
pascal@24459 24 }
pascal@24459 25
erjo@9425 26 # Rules to configure and make the package.
erjo@9425 27 compile_rules()
erjo@9425 28 {
erjo@9425 29 cd $src/source
pascal@13039 30 for i in ext/dl/mk*rb ; do
pascal@13039 31 grep -q STDOUT.flush $i || echo "STDOUT.flush" >> $i
pascal@13039 32 done
gokhlayeh@11573 33 ./configure $CONFIGURE_ARGS && make && make install
erjo@9425 34 }
erjo@9425 35
erjo@9425 36 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@9425 37 genpkg_rules()
erjo@9425 38 {
erjo@9425 39 mkdir -p $fs/usr/lib
pankso@9896 40 cp -a $install/usr/lib/ruby $fs/usr/lib
pankso@9896 41 cp -a $install/usr/bin $fs/usr
erjo@9425 42
erjo@9425 43 # Remove devel files --> ruby-enterprise-dev
pascal@15121 44 rm $fs/usr/lib/ruby/1.8/i?86-linux/*.h
erjo@9425 45
erjo@9425 46 # Remove doc --> ruby-enterprise-doc
erjo@9425 47 rm -rf $fs/usr/lib/ruby/1.8/rdoc
erjo@9425 48 }
erjo@9425 49