wok view yaws/receipt @ rev 22321

updated yaws (1.91 -> 2.0.6)
author Hans-G?nter Theisgen
date Thu Nov 14 16:38:16 2019 +0100 (2019-11-14)
parents 3af9c976b7d4
children dc3e7722b84e
line source
1 # SliTaz package receipt.
3 PACKAGE="yaws"
4 VERSION="2.0.6"
5 CATEGORY="development"
6 TAGS="webserver"
7 SHORT_DESC="Webserver for dynamic content written in Erlang."
8 MAINTAINER="allan316@gmail.com"
9 LICENSE="BSD"
10 WEB_SITE="http://yaws.hyber.org"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/download/$TARBALL"
15 DEPENDS="erlang pam pkg-config"
16 BUILD_DEPENDS="erlang gawk pam-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --localstatedir=/var \
24 --sysconfdir=/etc \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install 2>&1 | grep -v yaws.pdf
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib $fs/usr
39 cp -a $install/etc $fs
40 cp -a $install/var $fs
41 }