diff options
author | Jaroslav Lichtblau | 2014-11-28 20:17:14 +0100 |
---|---|---|
committer | Jaroslav Lichtblau | 2014-11-28 20:17:14 +0100 |
commit | 87cd7b61baadd42b567a3183d8f443a107721bc9 (patch) | |
tree | 767770853a54f42854e1f05dd33fa9472d3ae285 /PKGBUILD | |
download | aur-87cd7b61baadd42b567a3183d8f443a107721bc9.tar.gz |
Initial PKGBUILD status as of 28.11.2014
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..cb4b4f631d0b --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Nathan Owe. ndowens04 at gmail dot com + +pkgname=buildtorrent +pkgver=0.8 +pkgrel=1 +pkgdesc="A simple commandline torrent creator" +arch=('i686' 'x86_64') +url="http://mathr.co.uk/blog/torrent.html" +license=('GPL') +depends=('glibc') +source=(http://mathr.co.uk/blog/code/$pkgname-$pkgver.tar.gz) +sha256sums=('e8e27647bdb38873ac570d46c1a9689a92b01bb67f59089d1cdd08784f7052d0') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + + make DESTDIR=${pkgdir} install +} |