wok-current view proot/receipt @ rev 17195
bash: apply *all* security fixes
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Oct 08 14:52:55 2014 +0200 (2014-10-08) |
parents | |
children | cb3f10eaf9f6 |
line source
1 # SliTaz package receipt.
3 PACKAGE="proot"
4 VERSION="3.2.2"
5 CATEGORY="misc"
6 SHORT_DESC="User-space implementation of chroot, mount --bind, and binfmt_misc.."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://proot.me/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/cedric-vincent/PRoot/archive/v$VERSION.tar.gz"
13 DEPENDS="talloc"
14 BUILD_DEPENDS="wget talloc-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src/src
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/src/proot $fs/usr/bin
28 }