wok view mktorrent/receipt @ rev 21740

updated qjson and qjson-dev (0.8.1 -> 0.9.0)
author Hans-G?nter Theisgen
date Fri Jun 14 13:54:44 2019 +0100 (2019-06-14)
parents 8dd8bab3f0ca
children b569b85b0fb9
line source
1 # SliTaz package receipt.
3 PACKAGE="mktorrent"
4 VERSION="1.1"
5 CATEGORY="network"
6 SHORT_DESC="Command line utility to create BitTorrent metainfo files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/Rudde/mktorrent/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}archive/v$VERSION/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 HOST_ARCH="i486 arm x86_64"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/local/bin $fs/usr
31 }
33 testsuite()
34 {
35 readelf -h $install/usr/local/bin/$PACKAGE
36 }