wok annotate splashutils/receipt @ rev 16637
ruby-dev: add gem
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon May 12 10:25:37 2014 +0000 (2014-05-12) |
parents | 5d9d88764526 |
children | 5a73713a01e2 |
rev | line source |
---|---|
pascal@13591 | 1 # SliTaz package receipt. |
pascal@13591 | 2 |
pascal@13591 | 3 PACKAGE="splashutils" |
pascal@13591 | 4 VERSION="1.5.4.4" |
pascal@13591 | 5 CATEGORY="system-tools" |
pascal@13591 | 6 SHORT_DESC="Graphical boot utilities (fbsplash)." |
pascal@13591 | 7 MAINTAINER="devel@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
pascal@13591 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@13591 | 10 WEB_SITE="http://fbsplash.alanhaggai.org/" |
pascal@13591 | 11 WGET_URL="http://fbsplash.alanhaggai.org/tarballs/files/$TARBALL" |
pascal@13591 | 12 |
pascal@13591 | 13 DEPENDS="libjpeg libpng gpm" |
pascal@15349 | 14 BUILD_DEPENDS="jpeg-dev libpng-dev gpm-dev freetype-dev" |
pascal@13591 | 15 |
pascal@13591 | 16 # Rules to configure and make the package. |
pascal@13591 | 17 compile_rules() |
pascal@13591 | 18 { |
pascal@13591 | 19 cd $src |
pascal@13591 | 20 autoreconf |
pascal@13591 | 21 LIBS="-lbz2" |
pascal@13591 | 22 ./configure \ |
pascal@13591 | 23 --sysconfdir=/etc \ |
pascal@13591 | 24 --without-klibc \ |
pascal@13591 | 25 $CONFIGURE_ARGS && |
pascal@13591 | 26 make && make DESTDIR=$DESTDIR install |
pascal@13591 | 27 } |
pascal@13591 | 28 |
pascal@13591 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13591 | 30 genpkg_rules() |
pascal@13591 | 31 { |
pascal@13591 | 32 mkdir -p $fs/usr/lib |
pascal@13591 | 33 cp -a $install/sbin $fs |
pascal@13591 | 34 cp -a $install/usr/bin $fs/usr |
pascal@13591 | 35 cp -a $install/usr/sbin $fs/usr |
pascal@13591 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@13591 | 37 } |