summaryrefslogtreecommitdiff
path: root/libs/fcgi2/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'libs/fcgi2/MAKEPKG')
-rw-r--r--libs/fcgi2/MAKEPKG35
1 files changed, 35 insertions, 0 deletions
diff --git a/libs/fcgi2/MAKEPKG b/libs/fcgi2/MAKEPKG
new file mode 100644
index 0000000..d74e4e9
--- /dev/null
+++ b/libs/fcgi2/MAKEPKG
@@ -0,0 +1,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