Date: Monday, April 24, 2017 @ 11:36:31 Author: bpiotrowski Revision: 294281
newpkg: asp 1-1 Added: asp/ asp/repos/ asp/trunk/ asp/trunk/PKGBUILD ----------+ PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) Added: asp/trunk/PKGBUILD =================================================================== --- asp/trunk/PKGBUILD (rev 0) +++ asp/trunk/PKGBUILD 2017-04-24 11:36:31 UTC (rev 294281) @@ -0,0 +1,25 @@ +# $Id$ +# Maintainer: Dave Reisner <[email protected]> + +pkgname=asp +pkgver=1 +pkgrel=1 +pkgdesc="Arch Linux build source file management tool" +arch=(any) +url="https://github.com/falconindy/asp" +license=(MIT) +depends=(awk bash jq git) +makedepends=(asciidoc) +source=($pkgname-$pkgver.tar.gz::https://github.com/falconindy/asp/archive/v$pkgver.tar.gz) +sha256sums=('df92416a2a991f0c89a7c152de99a41608a4810d45b8dc58613695e17a971fc3') + +build() { + make -C asp-$pkgver +} + +package() { + make -C asp-$pkgver PREFIX=/usr DESTDIR="$pkgdir" install + install -Dm644 asp-$pkgver/LICENSE "$pkgdir/usr/share/licenses/asp/LICENSE" +} + +# vim: ft=sh syn=sh et
