wok view splashutils/receipt @ rev 16255

Up socat (2.0.0-b7)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 04 16:24:21 2014 +0000 (2014-04-04)
parents 5d9d88764526
children 5a73713a01e2
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://fbsplash.alanhaggai.org/"
11 WGET_URL="http://fbsplash.alanhaggai.org/tarballs/files/$TARBALL"
13 DEPENDS="libjpeg libpng gpm"
14 BUILD_DEPENDS="jpeg-dev libpng-dev gpm-dev freetype-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 autoreconf
21 LIBS="-lbz2"
22 ./configure \
23 --sysconfdir=/etc \
24 --without-klibc \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/sbin $fs
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/sbin $fs/usr
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }