wok diff plymouth/receipt @ rev 13017

Up: mplayer (1.1)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jun 08 21:03:58 2012 +0200 (2012-06-08)
parents
children 9d7fa52503ae
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/plymouth/receipt	Fri Jun 08 21:03:58 2012 +0200
     1.3 @@ -0,0 +1,46 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="plymouth"
     1.7 +VERSION="0.8.4"
     1.8 +CATEGORY="base-system"
     1.9 +SHORT_DESC="A graphical boot splash screen with KMS support."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.12 +WEB_SITE="http://www.freedesktop.org/wiki/Software/Plymouth"
    1.13 +WGET_URL="http://www.freedesktop.org/software/plymouth/releases/$TARBALL"
    1.14 +
    1.15 +DEPENDS="libpng pango gtk+ xorg-libpciaccess libdrm"
    1.16 +BUILD_DEPENDS="libpng-dev pango-dev gtk+-dev xorg-libpciaccess-dev libdrm-dev"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	./configure \
    1.23 +		--sysconfdir=/etc \
    1.24 +		--localstatedir=/var \
    1.25 +		--libexecdir=/usr/lib \
    1.26 +		--with-system-root-install \
    1.27 +		--with-log-viewer \
    1.28 +		--with-release-file=/etc/slitaz-release \
    1.29 +		--disable-libdrm_nouveau \
    1.30 +		$CONFIGURE_ARGS &&
    1.31 +	make && make install
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()
    1.36 +{
    1.37 +	mkdir -p $fs/lib $fs/usr/lib $fs/usr/share
    1.38 +	cp -a $install/bin $fs
    1.39 +	cp -a $install/etc $fs
    1.40 +	cp -a $install/sbin $fs
    1.41 +	cp -a $install/lib/*.so* $fs/lib
    1.42 +	cp -a $install/usr/bin $fs/usr
    1.43 +	cp -a $install/usr/sbin $fs/usr
    1.44 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.45 +	cp -a $install/usr/lib/plymouth $fs/usr/lib
    1.46 +	rm $fs/usr/lib/plymouth/*.*a
    1.47 +	rm $fs/usr/lib/plymouth/*/*.*a
    1.48 +}
    1.49 +