diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/mktorrent |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/mktorrent')
-rw-r--r-- | community/mktorrent/PKGBUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/community/mktorrent/PKGBUILD b/community/mktorrent/PKGBUILD new file mode 100644 index 000000000..6eff9a3c4 --- /dev/null +++ b/community/mktorrent/PKGBUILD @@ -0,0 +1,19 @@ +# Contributor: Emil Renner Berthing <esmil@users.sourceforge.net> + +pkgname=mktorrent +pkgver=1.0 +pkgrel=2 +pkgdesc='Simple command line utility to create BitTorrent metainfo files' +arch=('i686' 'x86_64') +url='http://mktorrent.sourceforge.net/' +license='GPL' +depends=('openssl') +source=("http://downloads.sourceforge.net/mktorrent/mktorrent-${pkgver}.tar.gz") +md5sums=('0da00209da96a0dc39efbb6eb5b4d8ff') + +build() { + cd ${srcdir}/mktorrent-${pkgver} + make DESTDIR=${pkgdir} PREFIX=/usr \ + USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1 USE_LARGE_FILES=1 \ + install +} |