Permalink
Cannot retrieve contributors at this time
53 lines (40 sloc)
1.47 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| # | |
| # Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/) | |
| # | |
| # This is free software, licensed under the GNU General Public License v2. | |
| # See /LICENSE for more information. | |
| # | |
| include $(TOPDIR)/rules.mk | |
| PKG_NAME:=measurement-kit | |
| PKG_VERSION:=0.10.5 | |
| PKG_RELEASE=1 | |
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | |
| PKG_SOURCE_URL:=https://codeload.github.com/measurement-kit/measurement-kit/tar.gz/v$(PKG_VERSION)? | |
| PKG_HASH:=8b83f04f4d3c653f93bcee5a6cc5e32e6595a3feb99526017d78099fd90d4a75 | |
| PKG_INSTALL:=1 | |
| PKG_FIXUP:=autoreconf | |
| PKG_BUILD_PARALLEL:=1 | |
| PKG_LICENSE:=BSD-2-Clause | |
| PKG_LICENSE_FILES:=LICENSE | |
| PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz> | |
| include $(INCLUDE_DIR)/package.mk | |
| define Package/measurement-kit | |
| SECTION:=libs | |
| CATEGORY:=Libraries | |
| TITLE:=library for open network measurement | |
| URL:=https://measurement-kit.github.io/ | |
| DEPENDS:=+libstdcpp +libcurl +libevent2-pthreads +libevent2-extra +libevent2-openssl +libevent2-core +libmaxminddb +ca-bundle | |
| endef | |
| define Package/measurement-kit/description | |
| Measurement Kit is a C++14 library that implements open network measurement methodologies (performance, censorship, etc.) | |
| endef | |
| CONFIGURE_ARGS+= --with-ca-bundle=/etc/ssl/cert.pem | |
| define Build/Configure | |
| ( cd $(PKG_BUILD_DIR); ./autogen.sh ) | |
| $(call Build/Configure/Default) | |
| endef | |
| define Package/measurement-kit/install | |
| $(INSTALL_DIR) $(1)/usr/bin | |
| $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/measurement_kit $(1)/usr/bin/ | |
| endef | |
| $(eval $(call BuildPackage,measurement-kit)) |