wok-current view proot/receipt @ rev 18419
drbd-utils: update bdeps
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Mon Sep 21 11:18:17 2015 +0200 (2015-09-21) | 
| 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 }