wok view dnsmasq/receipt @ rev 11494

Up: poppler 0.18.2; poppler-data 0.4.5 (fix build of epdfview; thank godane)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Dec 19 02:49:30 2011 +0100 (2011-12-19)
parents 505eee76b73b
children 8b2d7dbca71d
line source
1 # SliTaz package receipt.
3 PACKAGE="dnsmasq"
4 VERSION="2.58"
5 CATEGORY="network"
6 SHORT_DESC="Lightweight, DNS forwarder and DHCP server."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.thekelleys.org.uk/dnsmasq/doc.html"
10 WGET_URL="http://www.thekelleys.org.uk/$PACKAGE/$TARBALL"
11 CONFIG_FILE="/etc/dnsmasq.conf"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 sed -i -e 's/nawk/awk/' -e 's|/usr/local|/usr|' Makefile
18 make PREFIX=/usr && make install
19 mkdir -p $DESTDIR/etc
20 cp -a $src/dnsmasq.conf.example $DESTDIR/etc/dnsmasq.conf
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/sbin $fs/usr
28 cp -a $_pkg/etc $fs
29 cp -a $stuff/* $fs
30 }