wok view fakeroot/receipt @ rev 21790

Update some websites
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 30 10:35:07 2019 +0200 (2019-07-30)
parents fcdd50638150
children 9eb90cf8ff44
line source
1 # SliTaz package receipt.
3 PACKAGE="fakeroot"
4 VERSION="1.23"
5 CATEGORY="development"
6 SHORT_DESC="Gives a fake root environment, useful for building packages as a non-privileged user."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://packages.debian.org/fakeroot"
11 TARBALL="${PACKAGE}_${VERSION}.orig.tar.xz"
12 WGET_URL="http://ftp.debian.org/debian/pool/main/f/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="libcap-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }