wok view plymouth/receipt @ rev 17592

syslinux/isohybrib.exe: add --md5, --undo (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 10 13:31:26 2015 +0100 (2015-02-10)
parents 9d7fa52503ae
children 03b2309fd335
line source
1 # SliTaz package receipt.
3 PACKAGE="plymouth"
4 VERSION="0.8.6.1"
5 CATEGORY="base-system"
6 SHORT_DESC="A graphical boot splash screen with KMS support."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.freedesktop.org/wiki/Software/Plymouth"
11 WGET_URL="http://www.freedesktop.org/software/plymouth/releases/$TARBALL"
13 DEPENDS="libpng pango gtk+ xorg-libpciaccess libdrm"
14 BUILD_DEPENDS="libpng-dev pango-dev gtk+-dev xorg-libpciaccess-dev libdrm-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 --libexecdir=/usr/lib \
24 --with-system-root-install \
25 --with-log-viewer \
26 --with-release-file=/etc/slitaz-release \
27 --disable-libdrm_nouveau \
28 $CONFIGURE_ARGS &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/lib $fs/usr/lib $fs/usr/share
36 cp -a $install/bin $fs
37 cp -a $install/etc $fs
38 cp -a $install/sbin $fs
39 cp -a $install/lib/*.so* $fs/lib
40 cp -a $install/usr/bin $fs/usr
41 cp -a $install/usr/sbin $fs/usr
42 cp -a $install/usr/lib/*.so* $fs/usr/lib
43 cp -a $install/usr/lib/plymouth $fs/usr/lib
44 rm $fs/usr/lib/plymouth/*.*a
45 rm $fs/usr/lib/plymouth/*/*.*a
46 }