# $Id: PKGBUILD 95664 2013-08-15 11:48:01Z arodseth $ # Maintainer: Alexander Rødseth pkgname=addinclude pkgver=0.9 pkgrel=9 pkgdesc='Utility to add includes to C header- and sourcefiles' arch=('x86_64' 'i686') url='http://addinclude.roboticoverlords.org/' license=('GPL2') makedepends=('go') source=("http://$pkgname.roboticoverlords.org/$pkgname-$pkgver.tbz2") sha256sums=('8d88014b4b166d808892f433ce12e3ee683101af5e31886faa52a44cc6f7b451') options=('zipman') build() { cd "$srcdir/$pkgname-$pkgver" source /etc/profile.d/go.sh go build -o "$pkgname" } package() { cd "$srcdir/$pkgname-$pkgver" install -Dm755 "$pkgname" \ "$pkgdir/usr/bin/$pkgname" install -Dm644 "$pkgname.1.gz" \ "$pkgdir/usr/share/man/man1/$pkgname.1.gz" } # vim:set ts=2 sw=2 et: