wok annotate proot/receipt @ rev 17496

syslinux/iso2exe: check ISO md5 (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 05 12:38:18 2015 +0100 (2015-01-05)
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 }