wok view mktorrent/receipt @ rev 23905

Up tazusb (203) : add tazusb doc in menu
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 02 12:55:58 2020 +0000 (2020-08-02)
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 }