blob: d2bec88f3c87e301d9e5468d312d388b6ba81def (
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
|
#!/bin/mkpkg
# description: Simple man page generator for POSIX systems
# url: https://git.sr.ht/~sircmpwn/scdoc
name=scdoc
version=1.11.5
release=1
source=(https://git.sr.ht/~sircmpwn/scdoc/archive/$version.tar.gz)
renames=($name-$version.tar.xz)
sha256sums=(
"98780bbdf16c1bce89ef3a8c0f537ac6e4ea77087b609e7698857614488a2a62"
)
build() {
cd $name-$version
make PREFIX=/usr PCDIR=/usr/lib/pkgconfig
make DESTDIR=$PKG PREFIX=/usr PCDIR=/usr/lib/pkgconfig install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|