# HG changeset patch # User necrophcodr # Date 1410340426 -7200 # Node ID 71c50a9bf9ca7012500ac71c68b3df0b687e1944 # Parent 8e0ac35c4d251d1025ef3aab29d257844bb141ee Add tup diff -r 8e0ac35c4d25 -r 71c50a9bf9ca tup/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tup/receipt Wed Sep 10 11:13:46 2014 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="tup" +VERSION="0.7.2" +CATEGORY="utilities" +SHORT_DESC="Tup is a file-based build system for Linux, OSX, and Windows." +MAINTAINER="tcg.thegamer@gmail.com" +LICENSE="GPL2" +ARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://gittup.org/tup/" +WGET_URL="git|git://github.com/gittup/tup" + +DEPENDS="fuse" +BUILD_DEPENDS="fuse-dev git" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./bootstrap.sh && + mkdir -p $DESTDIR/usr/bin + cp tup $DESTDIR/usr/bin +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs/ +}