wok-next diff fakeroot/receipt @ rev 20917

freetype: return freetype-config back
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Aug 21 11:44:50 2018 +0300 (2018-08-21)
parents fcdd50638150
children d5aab818505e
line diff
     1.1 --- a/fakeroot/receipt	Mon Dec 02 16:43:36 2013 +0000
     1.2 +++ b/fakeroot/receipt	Tue Aug 21 11:44:50 2018 +0300
     1.3 @@ -1,32 +1,26 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="fakeroot"
     1.8  VERSION="1.15.1"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Gives a fake root environment, useful for building packages as a non-privileged user"
    1.11 +SHORT_DESC="Gives a fake root environment, useful for building packages as a \
    1.12 +non-privileged user"
    1.13  MAINTAINER="slaxemulator@gmail.com"
    1.14  LICENSE="GPL2"
    1.15 +WEB_SITE="http://packages.debian.org/fakeroot"
    1.16 +
    1.17  TARBALL="${PACKAGE}_${VERSION}.orig.tar.bz2"
    1.18 -WEB_SITE="http://packages.debian.org/fakeroot"
    1.19  WGET_URL="http://ftp.debian.org/debian/pool/main/f/$PACKAGE/$TARBALL"
    1.20  
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 -	cd $src
    1.25 +compile_rules() {
    1.26  	./configure \
    1.27 -		--prefix=/usr \
    1.28 -		--infodir=/usr/share/info \
    1.29 -		--mandir=/usr/share/man \
    1.30  		--disable-static \
    1.31  		$CONFIGURE_ARGS &&
    1.32 -	make && make DESTDIR=$DESTDIR install
    1.33 +	fix libtool &&
    1.34 +	make &&
    1.35 +	make DESTDIR=$DESTDIR install
    1.36  }
    1.37  
    1.38 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.39 -genpkg_rules()
    1.40 -{
    1.41 -	mkdir -p $fs/usr/lib
    1.42 -	cp -a $install/usr/bin $fs/usr
    1.43 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.44 +genpkg_rules() {
    1.45 +	copy @std
    1.46  }