wok view mktorrent/receipt @ rev 21088

updated jwm (2.2.0 -> 2.3.7)
author Hans-G?nter Theisgen
date Fri Mar 15 16:26:21 2019 +0100 (2019-03-15)
parents d8dd78808071
children 082c7fcce5a9
line source
1 # SliTaz package receipt.
3 PACKAGE="mktorrent"
4 VERSION="1.0"
5 CATEGORY="network"
6 SHORT_DESC="Command line utility to create BitTorrent metainfo files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/Rudde/mktorrent/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm x86_64"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/local/bin $fs/usr
29 }
31 testsuite()
32 {
33 readelf -h $install/usr/local/bin/$PACKAGE
34 }