Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 87cd7b61ba
2 changed files with 40 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = buildtorrent
pkgdesc = A simple commandline torrent creator
pkgver = 0.8
pkgrel = 1
url = http://mathr.co.uk/blog/torrent.html
arch = i686
arch = x86_64
license = GPL
depends = glibc
source = http://mathr.co.uk/blog/code/buildtorrent-0.8.tar.gz
sha256sums = e8e27647bdb38873ac570d46c1a9689a92b01bb67f59089d1cdd08784f7052d0
pkgname = buildtorrent

26
PKGBUILD Normal file
View file

@ -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
}