updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / id3tag-go / PKGBUILD
blob12f57e304f4a71d8c1dfc0c8ff9f8198a7f2ecfd
1 # Maintainer: Viacheslav Chumushuk <voice@root.ua>
3 pkgname=id3tag-go
4 pkgver=0.1
5 pkgrel=1
6 pkgdesc="id3tag is a Go wrapper around C libid3tag library."
7 arch=('i686' 'x86_64')
8 url="https://github.com/vchumushuk/id3tag-go"
9 license=('GPL3')
10 depends=('libid3tag' 'go')
11 source=("https://github.com/downloads/vchumushuk/$pkgname/$pkgname-$pkgver.tar.gz")
12 md5sums=('ef74f9e04de5f1064d20110fd1034bd6')
13 options=(!strip)
15 build() {
16     . /etc/profile.d/go.sh
18     cd "$startdir/src/$pkgname-$pkgver" || return 1
19     make || return 1
20     make test || return 1
21     make DESTDIR="$startdir/pkg" arch-install || return 1