wok rev 17139

Add tup
author necrophcodr <tcg.thegamer@gmail.com>
date Wed Sep 10 11:13:46 2014 +0200 (2014-09-10)
parents 8e0ac35c4d25
children d5320a34f352
files tup/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tup/receipt	Wed Sep 10 11:13:46 2014 +0200
     1.3 @@ -0,0 +1,29 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="tup"
     1.7 +VERSION="0.7.2"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="Tup is a file-based build system for Linux, OSX, and Windows."
    1.10 +MAINTAINER="tcg.thegamer@gmail.com"
    1.11 +LICENSE="GPL2"
    1.12 +ARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://gittup.org/tup/"
    1.14 +WGET_URL="git|git://github.com/gittup/tup"
    1.15 +
    1.16 +DEPENDS="fuse"
    1.17 +BUILD_DEPENDS="fuse-dev git"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	cd $src
    1.23 +	./bootstrap.sh &&
    1.24 +	mkdir -p $DESTDIR/usr/bin
    1.25 +	cp tup $DESTDIR/usr/bin
    1.26 +}
    1.27 +
    1.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 +genpkg_rules()
    1.30 +{
    1.31 +	cp -a $install/usr $fs/
    1.32 +}