wok view plymouth/receipt @ rev 14133

Up lzip (1.13)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 28 15:43:44 2013 +0100 (2013-02-28)
parents b994d2c0f802
children 380ffe05937a
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.freedesktop.org/wiki/Software/Plymouth"
10 WGET_URL="http://www.freedesktop.org/software/plymouth/releases/$TARBALL"
12 DEPENDS="libpng pango gtk+ xorg-libpciaccess libdrm"
13 BUILD_DEPENDS="libpng-dev pango-dev gtk+-dev xorg-libpciaccess-dev libdrm-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --sysconfdir=/etc \
21 --localstatedir=/var \
22 --libexecdir=/usr/lib \
23 --with-system-root-install \
24 --with-log-viewer \
25 --with-release-file=/etc/slitaz-release \
26 --disable-libdrm_nouveau \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/lib $fs/usr/lib $fs/usr/share
35 cp -a $install/bin $fs
36 cp -a $install/etc $fs
37 cp -a $install/sbin $fs
38 cp -a $install/lib/*.so* $fs/lib
39 cp -a $install/usr/bin $fs/usr
40 cp -a $install/usr/sbin $fs/usr
41 cp -a $install/usr/lib/*.so* $fs/usr/lib
42 cp -a $install/usr/lib/plymouth $fs/usr/lib
43 rm $fs/usr/lib/plymouth/*.*a
44 rm $fs/usr/lib/plymouth/*/*.*a
45 }