wok-next annotate dnsmasq/receipt @ rev 19212
airgeddon: fix wget_url
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 14 10:00:11 2016 +0200 (2016-06-14) |
parents | ec99b29b30f0 |
children | c4e53a39395a |
rev | line source |
---|---|
pascal@1953 | 1 # SliTaz package receipt. |
pascal@1953 | 2 |
pascal@1953 | 3 PACKAGE="dnsmasq" |
slaxemulator@15835 | 4 VERSION="2.68" |
pascal@1953 | 5 CATEGORY="network" |
pascal@1953 | 6 SHORT_DESC="Lightweight, DNS forwarder and DHCP server." |
pascal@1953 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
pascal@1953 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
slaxemulator@11099 | 10 WEB_SITE="http://www.thekelleys.org.uk/dnsmasq/doc.html" |
pascal@1953 | 11 WGET_URL="http://www.thekelleys.org.uk/$PACKAGE/$TARBALL" |
pascal@1953 | 12 CONFIG_FILE="/etc/dnsmasq.conf" |
pankso@15993 | 13 HOST_ARCH="i486 arm" |
pascal@1953 | 14 |
pascal@1953 | 15 # Rules to configure and make the package. |
pascal@1953 | 16 compile_rules() |
pascal@1953 | 17 { |
pascal@1953 | 18 sed -i -e 's/nawk/awk/' -e 's|/usr/local|/usr|' Makefile |
pankso@15993 | 19 make PREFIX=/usr && make DESTDIR=$DESTDIR install && |
pankso@15993 | 20 mkdir -p $DESTDIR/etc && |
slaxemulator@9383 | 21 cp -a $src/dnsmasq.conf.example $DESTDIR/etc/dnsmasq.conf |
pascal@1953 | 22 } |
pascal@1953 | 23 |
pascal@1953 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1953 | 25 genpkg_rules() |
pascal@1953 | 26 { |
pascal@1953 | 27 mkdir -p $fs/usr |
samuel_trassare@14116 | 28 cp -a $install/usr/sbin $fs/usr |
samuel_trassare@14116 | 29 cp -a $install/etc $fs |
slaxemulator@9383 | 30 cp -a $stuff/* $fs |
pascal@1953 | 31 } |
pascal@1953 | 32 |