wok-next view mktorrent/receipt @ rev 20906
Update homepages
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Aug 10 12:53:17 2018 +0300 (2018-08-10) |
parents | c4e53a39395a |
children | d5aab818505e |
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" # FIXME
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/local/bin $fs/usr
28 }
30 testsuite()
31 {
32 readelf -h $install/usr/local/bin/$PACKAGE
33 }