wok view splashutils/receipt @ rev 14895

Add gvpe
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 26 12:36:51 2013 +0000 (2013-07-26)
parents
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="splashutils"
4 VERSION="1.5.4.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Graphical boot utilities (fbsplash)."
7 MAINTAINER="devel@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://fbsplash.alanhaggai.org/"
10 WGET_URL="http://fbsplash.alanhaggai.org/tarballs/files/$TARBALL"
12 DEPENDS="libjpeg libpng gpm"
13 BUILD_DEPENDS="jpeg-dev libpng-dev gpm-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 autoreconf
20 LIBS="-lbz2"
21 ./configure \
22 --sysconfdir=/etc \
23 --without-klibc \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/sbin $fs
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/sbin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }