wok view dnsmasq/receipt @ rev 22351

umfpack: hide metis-4.0 missing
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 18 16:07:36 2019 +0100 (2019-11-18)
parents 8e449fe1df2e
children 35292b022843
line source
1 # SliTaz package receipt.
3 PACKAGE="dnsmasq"
4 VERSION="2.80"
5 CATEGORY="network"
6 SHORT_DESC="Lightweight, DNS forwarder and DHCP server."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.thekelleys.org.uk/dnsmasq/doc.html"
11 WGET_URL="http://www.thekelleys.org.uk/$PACKAGE/$TARBALL"
12 CONFIG_FILES="/etc/dnsmasq.conf"
13 HOST_ARCH="i486 arm"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 sed -i -e 's/nawk/awk/' -e 's|/usr/local|/usr|' Makefile
19 make PREFIX=/usr && make DESTDIR=$DESTDIR install &&
20 mkdir -p $DESTDIR/etc &&
21 cp -a $src/dnsmasq.conf.example $DESTDIR/etc/dnsmasq.conf
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/sbin $fs/usr
29 cp -a $install/etc $fs
30 cp -a $stuff/* $fs
31 }