From cc0aa555d91ffa1e878e0a85badccdcad6173c7b Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Tue, 17 Jun 2014 03:07:38 +0200 Subject: integrate OpenWrt swconfig utility Signed-off-by: Phil Sutter --- package/swconfig/Makefile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 package/swconfig/Makefile (limited to 'package/swconfig/Makefile') diff --git a/package/swconfig/Makefile b/package/swconfig/Makefile new file mode 100644 index 000000000..58c072bb6 --- /dev/null +++ b/package/swconfig/Makefile @@ -0,0 +1,34 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +# always use tab spaces as separator, no spaces +PKG_NAME:= swconfig +PKG_VERSION:= 1.0 +PKG_RELEASE:= 1 +PKG_DESCR:= OpenWrt switch config tool +PKG_SECTION:= net/route +PKG_DEPENDS:= libnl libpthread +PKG_BUILDDEP:= libnl + +WRKDIST= ${WRKDIR}/swconfig +NO_DISTFILES:= 1 + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,SWCONFIG,swconfig,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIG_STYLE:= manual +TARGET_CFLAGS+= -I$(STAGING_TARGET_DIR)/usr/include/libnl3/ +#BUILD_STYLE:= manual +INSTALL_STYLE:= manual + +# please install all files and directories to the package dir +swconfig-install: + $(INSTALL_DIR) $(IDIR_SWCONFIG)/usr/bin + $(INSTALL_BIN) $(WRKDIST)/swconfig \ + $(IDIR_SWCONFIG)/usr/bin + +# please remove ALL above comments, before commiting +include ${TOPDIR}/mk/pkg-bottom.mk -- cgit v1.2.3