summaryrefslogtreecommitdiff
path: root/community/addinclude/PKGBUILD
blob: edb5f73d8693ba1f771d75cfeb9f06f45e4be3da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# $Id: PKGBUILD 87598 2013-04-03 23:28:26Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>

pkgname=addinclude
pkgver=0.9
pkgrel=8
pkgdesc='Utility to add includes to C header- and sourcefiles'
arch=('x86_64' 'i686')
url='http://addinclude.roboticoverlords.org/'
license=('GPL')
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"
  install -Dm644 COPYING \
    "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}

# vim:set ts=2 sw=2 et: