blob: 4500dddd655b80e0cba5e78b031b51a799a999d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Benjamin James <benjamin-james@utulsa.edu>
pkgname=humans
pkgver=0.1
pkgrel=1
pkgdesc="Don't you wanna killall humans?"
arch=('any')
url="https://github.com/benjamin-james/humans"
license=('GPL3')
depends=('glibc')
provides=('humans')
source=(https://github.com/benjamin-james/${pkgname}/archive/${pkgver}.tar.gz)
md5sums=('b8391a077fc104b1b72067c45c6457ff')
build() {
cd "${pkgname}-${pkgver}"
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}/" PREFIX="/usr" install
}
|