wok-next diff plymouth/receipt @ rev 20577

More fix libtool
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 14 03:34:33 2018 +0300 (2018-04-14)
parents dd145c435e4b
children 10df65db91ad
line diff
     1.1 --- a/plymouth/receipt	Wed Feb 28 17:32:31 2018 +0200
     1.2 +++ b/plymouth/receipt	Sat Apr 14 03:34:33 2018 +0300
     1.3 @@ -1,48 +1,31 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="plymouth"
     1.8  VERSION="0.8.6.1"
     1.9  CATEGORY="base-system"
    1.10 -SHORT_DESC="A graphical boot splash screen with KMS support."
    1.11 +SHORT_DESC="A graphical boot splash screen with KMS support"
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="http://www.freedesktop.org/wiki/Software/Plymouth"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="http://www.freedesktop.org/wiki/Software/Plymouth"
    1.18  WGET_URL="http://www.freedesktop.org/software/plymouth/releases/$TARBALL"
    1.19  
    1.20 -DEPENDS="libpng16 pango gtk+ xorg-libpciaccess libdrm"
    1.21  BUILD_DEPENDS="libpng16-dev pango-dev gtk+-dev xorg-libpciaccess-dev libdrm-dev"
    1.22  
    1.23 -# Rules to configure and make the package.
    1.24 -compile_rules()
    1.25 -{
    1.26 -	cd $src
    1.27 +compile_rules() {
    1.28  	./configure \
    1.29 -		--sysconfdir=/etc \
    1.30 -		--localstatedir=/var \
    1.31  		--libexecdir=/usr/lib \
    1.32  		--with-system-root-install \
    1.33  		--with-log-viewer \
    1.34  		--with-release-file=/etc/slitaz-release \
    1.35  		--disable-libdrm_nouveau \
    1.36  		$CONFIGURE_ARGS &&
    1.37 -	make && make install
    1.38 +	make &&
    1.39 +	make install
    1.40  }
    1.41  
    1.42 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.43 -genpkg_rules()
    1.44 -{
    1.45 -	mkdir -p $fs/lib $fs/usr/lib $fs/usr/share
    1.46 -	cp -a $install/bin $fs
    1.47 -	cp -a $install/etc $fs
    1.48 -	cp -a $install/sbin $fs
    1.49 -	cp -a $install/lib/*.so* $fs/lib
    1.50 -	cp -a $install/usr/bin $fs/usr
    1.51 -	cp -a $install/usr/sbin $fs/usr
    1.52 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.53 -	cp -a $install/usr/lib/plymouth $fs/usr/lib
    1.54 -	rm $fs/usr/lib/plymouth/*.*a
    1.55 -	rm $fs/usr/lib/plymouth/*/*.*a
    1.56 +genpkg_rules() {
    1.57 +	copy @std
    1.58 +	DEPENDS="libpng16 pango gtk+ xorg-libpciaccess libdrm"
    1.59  }
    1.60 -
    1.61 -