summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8280d012e6954149776246cdc9af306e22b05e59 (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
35
36
# Maintainer: Scott <swlittle{VII} At gmail dot (commerical tld)>
pkgname=fetchutils-git
pkgver=0.1.0
pkgrel=1
epoch=
pkgdesc="A collection of small (< ~100 LOC) POSIX shell scripts to retrieve system information"
arch=("x86_64")
url="https://github.com/lptstr/fetchutils"
license=('MIT')
groups=()
depends=('bash')
makedepends=('scdoc')
checkdepends=()
optdepends=()
provides=()
conflicts=()
BUILDENV+=('!check')
replaces=()
backup=()
options=()
install=
changelog=
source=("$pkgname::git+https://github.com/lptstr/fetchutils.git")
noextract=()
md5sums=('SKIP')
validpgpkeys=()

build() {
	cd "$pkgname"
	make
}

package() {
	cd "$pkgname"
	make PREFIX="$pkgdir/usr/" install
}