wok-next view fcgi/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="fcgi"
4 VERSION="2.4.2"
5 CATEGORY="development"
6 TAGS="CGI"
7 SHORT_DESC="Fast CGI binary and library"
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://fastcgi-archives.github.io/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/FastCGI-Archives/fcgi2/archive/$VERSION.tar.gz"
15 BUILD_DEPENDS="automake libtool"
16 SPLIT="$PACKAGE-dev"
18 compile_rules()
19 {
20 autoreconf -if &&
21 ./configure $CONFIGURE_ARGS &&
22 fix libtool &&
23 make -j1 &&
24 make -j1 DESTDIR=$install install
25 }
27 genpkg_rules()
28 {
29 case $PACKAGE in
30 fcgi)
31 copy @std
32 ;;
33 *-dev)
34 copy @dev
35 ;;
36 esac
37 }