blob: d74e4e9bfd6417394e7deed5282a76bc7998f582 (
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
|
#!/bin/mkpkg
# description: FastCGI development kit (libfcgi)
# url: https://github.com/FastCGI-Archives/fcgi2
name=fcgi2
version=2.4.7
release=1
depends=()
makedeps=(autoconf automake libtool m4)
source=(https://github.com/FastCGI-Archives/fcgi2/archive/refs/tags/$version.tar.gz)
sha256sums=(
"e41ddc3a473b555bdc0cbd80703dcb1f4610c1a7700d3b9d3d0c14a416e1074b"
)
build() {
cd $name-$version
./autogen.sh
./configure \
--prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|