wok view splashutils/receipt @ rev 19674

Add get-opera-blink
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Feb 08 05:35:49 2017 +0200 (2017-02-08)
parents 5a73713a01e2
children e919c5a2742d
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="bzlib freetype libjpeg 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 }