faster to compile. A small selection of packages was tested going from: Executed in 696.30 secs fish external usr time 82.98 mins 395.00 micros 82.98 mins sys time 9.02 mins 0.00 micros 9.02 mins to: Executed in 592.20 secs fish external usr time 84.84 mins 361.00 micros 84.84 mins sys time 8.85 mins 57.00 micros 8.85 mins Tested by running make -j 12 and wiping staging/build_dir/target_x Signed-off-by: Rosen Penev <rosenp@gmail.com>
40 lines
1 KiB
Makefile
40 lines
1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=netwhere
|
|
PKG_VERSION:=0.9
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=netwhere-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/benhsmith/netwhere/archive/$(PKG_VERSION)/
|
|
PKG_HASH:=94a672bdcd9d4455b85429dddd81ffc778e0b26fe87af19ad75c27858ec9dbe2
|
|
|
|
PKG_MAINTAINER:=Ben Smith <le.ben.smith@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_DEPENDS:=boost
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../devel/ninja/ninja-cmake.mk
|
|
|
|
define Package/netwhere
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Netwhere
|
|
URL:=https://github.com/benhsmith/netwhere
|
|
DEPENDS:=+libtins +libmicrohttpd
|
|
endef
|
|
|
|
define Package/netwhere/description
|
|
Network monitor
|
|
endef
|
|
|
|
define Package/netwhere/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/netwhere $(1)/usr/bin/netwhere
|
|
$(INSTALL_DIR) $(1)/www/netwhere
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/html/index.html $(1)/www/netwhere/
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/html/netwhere.js $(1)/www/netwhere/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,netwhere))
|