Initial PKGBUILD status as of 28.11.2014

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

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = evad
pkgdesc = A text-based client to the powerful MPD music server
pkgver = 0.0.2
pkgrel = 3
url = http://sourceforge.net/projects/evad/
arch = i686
arch = x86_64
license = GPL
depends = python2
depends = mpd
source = http://downloads.sourceforge.net/evad/evad-0.0.2.tar.bz2
sha256sums = 4d49c3ad4574a0660b0b5a3153d22206c35800835a0318233875d9b1407dbae8
pkgname = evad

18
PKGBUILD Normal file
View file

@ -0,0 +1,18 @@
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=evad
pkgver=0.0.2
pkgrel=3
pkgdesc="A text-based client to the powerful MPD music server"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/evad/"
license=('GPL')
depends=('python2' 'mpd')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
sha256sums=('4d49c3ad4574a0660b0b5a3153d22206c35800835a0318233875d9b1407dbae8')
package() {
cd ${srcdir}/$pkgname-$pkgver
python2 setup.py install --root=${pkgdir}
}