wok annotate proot/receipt @ rev 18058
Add py3k3: Python 3.3.x - py3k is 3.2.x
author | Nathan Neulinger <nneul@neulinger.org> |
---|---|
date | Sat May 16 14:55:13 2015 +0000 (2015-05-16) |
parents | |
children | cb3f10eaf9f6 |
rev | line source |
---|---|
pascal@16623 | 1 # SliTaz package receipt. |
pascal@16623 | 2 |
pascal@16623 | 3 PACKAGE="proot" |
pascal@16623 | 4 VERSION="3.2.2" |
pascal@16623 | 5 CATEGORY="misc" |
pascal@16623 | 6 SHORT_DESC="User-space implementation of chroot, mount --bind, and binfmt_misc.." |
pascal@16623 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@16623 | 8 LICENSE="GPL2" |
pascal@16623 | 9 WEB_SITE="http://proot.me/" |
pascal@16623 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@16623 | 11 WGET_URL="https://github.com/cedric-vincent/PRoot/archive/v$VERSION.tar.gz" |
pascal@16623 | 12 |
pascal@16623 | 13 DEPENDS="talloc" |
pascal@16623 | 14 BUILD_DEPENDS="wget talloc-dev" |
pascal@16623 | 15 |
pascal@16623 | 16 # Rules to configure and make the package. |
pascal@16623 | 17 compile_rules() |
pascal@16623 | 18 { |
pascal@16623 | 19 cd $src/src |
pascal@16623 | 20 make |
pascal@16623 | 21 } |
pascal@16623 | 22 |
pascal@16623 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@16623 | 24 genpkg_rules() |
pascal@16623 | 25 { |
pascal@16623 | 26 mkdir -p $fs/usr/bin |
pascal@16623 | 27 cp -a $src/src/proot $fs/usr/bin |
pascal@16623 | 28 } |