wok-stable view ruby/receipt @ rev 5478

Fixed acl-dev. Soft link acl.h to /usr/include/sys/acl.h. This is so cups-pam can be build.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu May 06 01:07:40 2010 +0000 (2010-05-06)
parents 06c5e42bb9f1
children eef31cf06ceb
line source
1 # SliTaz package receipt.
3 PACKAGE="ruby"
4 VERSION="1.9.1-p376"
5 CATEGORY="development"
6 SHORT_DESC="Dynamic programming language focused on simplicity and productivity."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.ruby-lang.org/"
10 WGET_URL="ftp://ftp.ruby-lang.org/pub/ruby/${VERSION%.*}/$TARBALL"
11 DEPENDS="libdb ncurses openssl readline zlib tk xorg-libXss gdbm"
12 TAGS="ruby language programming"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/ruby $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
34 # Remove devel files --> ruby-dev
35 rm $fs/usr/lib/ruby/1.9/i486-linux/*.h
36 }