removed community/addinclude

This commit is contained in:
Kevin Mihelich 2019-01-27 17:20:37 +00:00
parent 4071ab025a
commit 98e75eda6a

View file

@ -1,33 +0,0 @@
# $Id$
# Maintainer: Alexander F Rødseth <xyproto@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - build with go instead of gcc-go
pkgname=addinclude
pkgver=1.0
pkgrel=2
pkgdesc='Utility to add includes to header- and sourcefiles, for C and C++'
arch=('x86_64')
url='http://addinclude.roboticoverlords.org/'
license=('GPL2')
makedepends=('go')
source=("http://addinclude.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc})
validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
sha256sums=('23786f497bc5097a26d39ef995c28035506e5bb39172c7d6a03c386e3d79471c'
'SKIP')
build() {
cd "$pkgname-$pkgver"
go build -o "$pkgname"
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
install -Dm644 $pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1"
}
# vim: ts=2 sw=2 et: