From d2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 15 Jun 2022 20:02:02 +0100 Subject: added deps for qemu --- repo/fcgi/fcgi.xibuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 repo/fcgi/fcgi.xibuild (limited to 'repo/fcgi/fcgi.xibuild') diff --git a/repo/fcgi/fcgi.xibuild b/repo/fcgi/fcgi.xibuild new file mode 100644 index 0000000..f022411 --- /dev/null +++ b/repo/fcgi/fcgi.xibuild @@ -0,0 +1,27 @@ +#!/bin/sh + +NAME="fcgi" +DESC="FAST CGI(fcgi) is a language independent, high performant extension to CGI" + +MAKEDEPS="libtool autoconf automake" + +PKG_VER=2.4.2 +SOURCE="https://github.com/FastCGI-Archives/fcgi2/archive/$PKG_VER.tar.gz" + +build() { + export LIBS="-lm" + ./autogen.sh + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --enable-shared + make +} + +package() { + make DESTDIR="$PKG_DEST" install +} -- cgit v1.2.1