wok view splashutils/receipt @ rev 18973

splashutils: fix build, update URLs, add description
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Mar 12 14:29:04 2016 +0200 (2016-03-12)
parents 691511385fb8
children 7e9229845349
line source
1 # SliTaz package receipt.
3 PACKAGE="splashutils"
4 VERSION="1.5.4.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Framebuffer boot splash screen"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2 GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://sourceforge.net/projects/fbsplash.berlios/"
11 WGET_URL="$SF_MIRROR/fbsplash.berlios/$TARBALL"
13 DEPENDS="libjpeg libpng gpm"
14 BUILD_DEPENDS="autoconf automake libtool jpeg-dev gpm-dev libpng-dev \
15 freetype-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 autoreconf --install --force
21 LIBS="-lbz2"
22 ./configure \
23 --sysconfdir=/etc \
24 --without-klibc \
25 $CONFIGURE_ARGS || exit 1
26 sed -i 's|-all-static||' $src/src/Makefile
27 make -j 1 && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/sbin $fs
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/sbin $fs/usr
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 }