wok view firejail/receipt @ rev 19083

Add themes from the Shimmer Project that fit GTK+2/3 at the same time
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 29 17:46:17 2016 +0300 (2016-04-29)
parents
children 7dbcd0a901ae
line source
1 # SliTaz package receipt.
3 PACKAGE="firejail"
4 VERSION="0.9.34"
5 CATEGORY="security"
6 SHORT_DESC="A SUID sandbox program"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://l3net.wordpress.com/projects/firejail/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS="linux-api-headers"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --prefix=/usr \
19 --sysconfdir=/etc \
20 --localstatedir=/var \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 cp -a $install/etc $fs
34 }