wok view ez-ipupdate/receipt @ rev 3875

Busybox: ensure pidfile are valid
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 10 13:56:55 2009 +0200 (2009-08-10)
parents
children 31c985a0bd3d
line source
1 # SliTaz package receipt.
3 PACKAGE="ez-ipupdate"
4 VERSION="3.0.11b7"
5 CATEGORY="network"
6 SHORT_DESC="Update your host name for some dynamic DNS services."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.$PACKAGE.com/"
10 WGET_URL="${WEB_SITE}dist/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 grep -q errno.h conf_file.h || echo "#include <errno.h>" >> conf_file.h
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --enable-default-service=dyndns \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $_pkg/usr $fs
28 }