freewrt_2_0
|
Last change
on this file since 5e38a08 was bcea6cd, checked in by Waldemar Brodkorb <wbx@…>, 4 months ago |
|
dnsmasq: update to latest
|
-
Property mode
set to
100644
|
|
File size:
1.0 KB
|
| Line | |
|---|
| 1 | # This file is part of the FreeWRT project. FreeWRT is copyrighted
|
|---|
| 2 | # material, please see the LICENCE file in the top-level directory
|
|---|
| 3 |
|
|---|
| 4 | include $(TOPDIR)/rules.mk
|
|---|
| 5 |
|
|---|
| 6 | PKG_NAME:= dnsmasq
|
|---|
| 7 | PKG_VERSION:= 2.91
|
|---|
| 8 | PKG_RELEASE:= 1
|
|---|
| 9 | PKG_MD5SUM:= 66e227a971ec29299f18274251440571
|
|---|
| 10 | PKG_INIT:= 50
|
|---|
| 11 |
|
|---|
| 12 | PKG_SOURCE_URL:= https://thekelleys.org.uk/dnsmasq
|
|---|
| 13 |
|
|---|
| 14 | include $(TOPDIR)/mk/package.mk
|
|---|
| 15 |
|
|---|
| 16 | $(eval $(call PKG_template,DNSMASQ,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|---|
| 17 |
|
|---|
| 18 | $(WRKBUILD)/.configured:
|
|---|
| 19 | touch $@
|
|---|
| 20 |
|
|---|
| 21 | $(WRKBUILD)/.built:
|
|---|
| 22 | $(MAKE) -C $(WRKBUILD) \
|
|---|
| 23 | CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" \
|
|---|
| 24 | BINDIR=/usr/sbin MANDIR=/usr/man
|
|---|
| 25 | touch $@
|
|---|
| 26 |
|
|---|
| 27 | $(IPKG_DNSMASQ):
|
|---|
| 28 | $(INSTALL_DIR) $(IDIR_DNSMASQ)/usr/sbin
|
|---|
| 29 | $(INSTALL_DIR) $(IDIR_DNSMASQ)/etc/init.d
|
|---|
| 30 | $(INSTALL_BIN) $(WRKBUILD)/src/$(PKG_NAME) $(IDIR_DNSMASQ)/usr/sbin/
|
|---|
| 31 | $(INSTALL_DATA) ./files/dnsmasq.conf $(IDIR_DNSMASQ)/etc/dnsmasq.conf
|
|---|
| 32 | $(INSTALL_BIN) ./files/dnsmasq.init \
|
|---|
| 33 | $(IDIR_DNSMASQ)/etc/init.d/S$(PKG_INIT)dnsmasq
|
|---|
| 34 | $(RSTRIP) $(IDIR_DNSMASQ)
|
|---|
| 35 | $(IPKG_BUILD) $(IDIR_DNSMASQ) $(PACKAGE_DIR)
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.