mirror of
https://github.com/pygos/build.git
synced 2024-11-05 03:27:10 +01:00
Add dnsmasq package
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
babb60e124
commit
2426f1f32c
3 changed files with 35 additions and 0 deletions
33
pkg/dnsmasq/build
Normal file
33
pkg/dnsmasq/build
Normal file
|
@ -0,0 +1,33 @@
|
|||
VERSION="2.78"
|
||||
SRCDIR="dnsmasq-${VERSION}"
|
||||
TARBALL="${SRCDIR}.tar.xz"
|
||||
URL="http://www.thekelleys.org.uk/dnsmasq"
|
||||
SHA256SUM="89949f438c74b0c7543f06689c319484bd126cc4b1f8c745c742ab397681252b"
|
||||
|
||||
prepare() {
|
||||
return
|
||||
}
|
||||
|
||||
build() {
|
||||
local SOURCE="$1"
|
||||
local BUILD="$2"
|
||||
|
||||
cp -r ${SOURCE}/* ${BUILD}
|
||||
|
||||
make CC=${TARGET}-gcc PREFIX="/" BINDIR="/bin" -j $NUMJOBS
|
||||
}
|
||||
|
||||
deploy() {
|
||||
local SOURCE="$1"
|
||||
local BUILD="$2"
|
||||
local DEPLOY="$3"
|
||||
local DEVDEPLOY="$4"
|
||||
|
||||
make CC=${TARGET}-gcc PREFIX="/" BINDIR="/bin" DESTDIR="$DEPLOY" install
|
||||
|
||||
${TARGET}-strip --discard-all "$DEPLOY/bin/dnsmasq"
|
||||
rm -r "$DEPLOY/share"
|
||||
|
||||
mkdir -p "$DEPLOY/etc"
|
||||
cp "$SOURCE/dnsmasq.conf.example" "$DEPLOY/etc/dnsmasq.conf"
|
||||
}
|
|
@ -18,3 +18,4 @@ inetutils
|
|||
ethtool
|
||||
iproute2
|
||||
unbound
|
||||
dnsmasq
|
||||
|
|
|
@ -21,3 +21,4 @@ inetutils
|
|||
ethtool
|
||||
iproute2
|
||||
unbound
|
||||
dnsmasq
|
||||
|
|
Loading…
Reference in a new issue