diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/mktorrent | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/mktorrent')
-rw-r--r-- | community/mktorrent/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/community/mktorrent/PKGBUILD b/community/mktorrent/PKGBUILD new file mode 100644 index 000000000..495ea2b59 --- /dev/null +++ b/community/mktorrent/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 66239 2012-02-23 05:13:18Z spupykin $ +# Contributor: Emil Renner Berthing <esmil@users.sourceforge.net> + +pkgname=mktorrent +pkgver=1.0 +pkgrel=3 +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 +} |