wok diff fakeroot/receipt @ rev 20173
linux: enable CPU microcode loading support
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jan 23 23:11:42 2018 +0100 (2018-01-23) |
parents | 06528d0615fa |
children | ea500bc83235 |
line diff
1.1 --- a/fakeroot/receipt Tue Apr 12 12:16:41 2011 +0000 1.2 +++ b/fakeroot/receipt Tue Jan 23 23:11:42 2018 +0100 1.3 @@ -5,6 +5,7 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="Gives a fake root environment, useful for building packages as a non-privileged user" 1.6 MAINTAINER="slaxemulator@gmail.com" 1.7 +LICENSE="GPL2" 1.8 TARBALL="${PACKAGE}_${VERSION}.orig.tar.bz2" 1.9 WEB_SITE="http://packages.debian.org/fakeroot" 1.10 WGET_URL="http://ftp.debian.org/debian/pool/main/f/$PACKAGE/$TARBALL" 1.11 @@ -19,14 +20,13 @@ 1.12 --mandir=/usr/share/man \ 1.13 --disable-static \ 1.14 $CONFIGURE_ARGS && 1.15 - make && make DESTDIR=$PWD/_pkg install 1.16 + make && make DESTDIR=$DESTDIR install 1.17 } 1.18 1.19 # Rules to gen a SliTaz package suitable for Tazpkg. 1.20 genpkg_rules() 1.21 { 1.22 mkdir -p $fs/usr/lib 1.23 - cp -a $_pkg/usr/bin $fs/usr 1.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.25 + cp -a $install/usr/bin $fs/usr 1.26 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.27 } 1.28 -