mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
549 B
Bash
24 lines
549 B
Bash
# Maintainer: Dave Reisner <d@falconindy.com>
|
|
|
|
pkgname=cower
|
|
pkgver=11
|
|
pkgrel=1
|
|
pkgdesc="A simple AUR agent with a pretentious name"
|
|
arch=('any')
|
|
url="http://github.com/falconindy/cower"
|
|
license=('MIT')
|
|
depends=('curl' 'yajl' 'pacman')
|
|
makedepends=('perl')
|
|
source=("http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
|
|
md5sums=('7e2f3c5a8bc258ee129098aca5bfda9e'
|
|
'SKIP')
|
|
|
|
build() {
|
|
make -C "$pkgname-$pkgver"
|
|
}
|
|
|
|
package() {
|
|
make -C "$pkgname-$pkgver" PREFIX=/usr DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
# vim: ft=sh syn=sh
|