wok annotate tup/receipt @ rev 17543

Up busybox (1.23.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 27 16:55:03 2015 +0100 (2015-01-27)
parents 9c4b8d987746
children c59c1fa413a6
rev   line source
tcg@17139 1 # SliTaz package receipt.
tcg@17139 2
tcg@17139 3 PACKAGE="tup"
tcg@17139 4 VERSION="0.7.2"
tcg@17139 5 CATEGORY="utilities"
tcg@17139 6 SHORT_DESC="Tup is a file-based build system for Linux, OSX, and Windows."
tcg@17139 7 MAINTAINER="tcg.thegamer@gmail.com"
tcg@17139 8 LICENSE="GPL2"
pascal@17162 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
tcg@17139 10 WEB_SITE="http://gittup.org/tup/"
tcg@17139 11 WGET_URL="git|git://github.com/gittup/tup"
tcg@17139 12
tcg@17139 13 DEPENDS="fuse"
tcg@17139 14 BUILD_DEPENDS="fuse-dev git"
tcg@17139 15
tcg@17139 16 # Rules to configure and make the package.
tcg@17139 17 compile_rules()
tcg@17139 18 {
tcg@17139 19 cd $src
tcg@17139 20 ./bootstrap.sh &&
tcg@17139 21 mkdir -p $DESTDIR/usr/bin
tcg@17139 22 cp tup $DESTDIR/usr/bin
tcg@17139 23 }
tcg@17139 24
tcg@17139 25 # Rules to gen a SliTaz package suitable for Tazpkg.
tcg@17139 26 genpkg_rules()
tcg@17139 27 {
tcg@17139 28 cp -a $install/usr $fs/
tcg@17139 29 }