wok view dhcp/receipt @ rev 2562

declare /etc/filesystems
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 29 11:34:34 2009 +0000 (2009-03-29)
parents 0fe91a193391
children 7dbe1d832560
line source
1 # SliTaz package receipt.
3 PACKAGE="dhcp"
4 VERSION="4.1.0a2"
5 CATEGORY="network"
6 SHORT_DESC="Dynamic Host Configuration Protocol server."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.isc.org/products/DHCP/"
10 WGET_URL="http://ftp.isc.org/isc/$PACKAGE/$TARBALL"
11 DEPENDS="libcrypto"
12 CONFIG_FILES="/etc/dhcpd.conf"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && \
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/sbin $fs/etc
27 cp $_pkg/etc/dhcpd.conf $fs/etc
28 cp $_pkg/usr/sbin/dhcpd $fs/usr/sbin
29 # Package all dhcp pkgs
30 for i in $(cd $WOK; ls -d dhcp-*)
31 do
32 tazwok genpkg $i
33 done
34 }