summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 62c5d819a03bfe00417be168b54148d1a3709b69 (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
# Maintainer: Ivy Foster <code@escondida.tk>

pkgname=fist
pkgver=4.0
pkgrel=1
pkgdesc='Emphatic message generator'
arch=(i686 x86_64)
url='https://www.fourmilab.ch/fist/'
license=('custom:PublicDomain')
source=("https://www.fourmilab.ch/fist/fist-$pkgver.tar.gz")
# checksums not provided by upstream
md5sums=(f59c4b52a04e1d13b077510cf66589e9)

build() {
	cd "fist-$pkgver"
	./configure --prefix=/usr --mandir=/usr/share/man
	make
}

package() {
	cd "fist-$pkgver"
	install -d "$pkgdir"/usr/{bin,share/man/man1}
	make DESTDIR="$pkgdir" install
	install -Dm 644 COPYING "$pkgdir"/usr/share/licenses/fist/COPYING
}