diff options
author | Florian Fainelli <florian@openwrt.org> | 2005-12-14 13:23:40 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2005-12-14 13:23:40 +0000 |
commit | 58fb874180d1eacb6d850b1dbe3ab1901a2aabc6 (patch) | |
tree | 7610224c7982bdf64f688024b2fe7c897e6b9c70 /openwrt/package/l2tpns/Makefile | |
parent | db75840d96c233a8972a521d7996052c3e2d7b8c (diff) | |
download | mtk-20170518-58fb874180d1eacb6d850b1dbe3ab1901a2aabc6.zip mtk-20170518-58fb874180d1eacb6d850b1dbe3ab1901a2aabc6.tar.gz mtk-20170518-58fb874180d1eacb6d850b1dbe3ab1901a2aabc6.tar.bz2 |
Added libcli, l2tpns, fixed typo and mising URL
SVN-Revision: 2669
Diffstat (limited to 'openwrt/package/l2tpns/Makefile')
-rwxr-xr-x | openwrt/package/l2tpns/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/openwrt/package/l2tpns/Makefile b/openwrt/package/l2tpns/Makefile new file mode 100755 index 0000000..6f2406e --- /dev/null +++ b/openwrt/package/l2tpns/Makefile @@ -0,0 +1,29 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=l2tpns +PKG_VERSION:=2.1.14 +PKG_RELEASE:=1 +PKG_MD5SUM:=2a0ee2a3678160c335f1d68c17c4f871 +PKG_SOURCE_URL:=@SF/L2TPNS +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_CAT:=zcat + +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,L2TPNS,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + touch $@ + +$(PKG_BUILD_DIR)/.built: + $(MAKE) CC=$(TARGET_CC) LD=$(TARGET_CC) DESTDIR=$(PKG_INSTALL_DIR) STAGING_DIR=$(STAGING_DIR) -C $(PKG_BUILD_DIR) install + touch $@ + +$(IPKG_L2TPNS): + mkdir -p $(IDIR_L2TPNS) + cp -fpR $(PKG_INSTALL_DIR)/* $(IDIR_L2TPNS)/ + $(RSTRIP) $(IDIR_L2TPNS) + $(IPKG_BUILD) $(IDIR_L2TPNS) $(PACKAGE_DIR) |