wok-next annotate proot/receipt @ rev 20405

Follow BLFS Chapter 9 "General Libraries": up apr, apr-util, aspell, autoconf213 (for js), dbus-glib, enchant, exempi, fftw, glib, glibmm, gmime, gobject-introspection, gsl, js, libboost.

js is 39.7MB / 87.6MB now. Looks like it's proper time to kick off polkit (Hi, Xander! You was right.)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Dec 07 17:39:40 2017 +0200 (2017-12-07)
parents
children 2f03cb67a994
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 }