wok view tup/receipt @ rev 20283

security fixes from 0.3.1.9 (2017 Dec 1) and 0.3.1.10 (March 3)... further info: https://blog.torproject.org/new-stable-tor-releases-security-fixes-and-dos-prevention-03210-03110-02915
author Erkan Yilmaz <erkan@slitaz.org>
date Tue Mar 27 11:09:07 2018 +0000 (2018-03-27)
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 }