wok view tup/receipt @ rev 22991

updated l3afpad (0.8.18.1.10 -> 0.8.18.1.11)
author Hans-G?nter Theisgen
date Sun Mar 01 17:39:44 2020 +0100 (2020-03-01)
parents 78f834363e9e
children 8eaf1d9eb640
line source
1 # SliTaz package receipt.
3 PACKAGE="tup"
4 VERSION="0.7.3"
5 CATEGORY="utilities"
6 SHORT_DESC="Tup is a file-based build system for Linux, OSX, and Windows."
7 MAINTAINER="necrophcodr@necrophcodr.me"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://gittup.org/tup/"
11 WGET_URL="git|git://github.com/gittup/tup"
13 DEPENDS="fuse"
14 BUILD_DEPENDS="fuse-dev git"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./bootstrap.sh &&
21 mkdir -p $DESTDIR/usr/bin
22 cp tup $DESTDIR/usr/bin
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/usr $fs/
29 }