wok view tup/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
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 }