1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-13 02:51:50 +00:00
openmptcprouter-feeds/speedtestc/Makefile

37 lines
981 B
Makefile
Raw Normal View History

#
2019-01-03 14:56:11 +00:00
# Copyright (C) 2018-2019 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=speedtestc
2020-07-31 13:39:55 +00:00
PKG_RELEASE:=3
2019-08-21 05:25:28 +00:00
PKG_SOURCE_URL:=https://github.com/mobrembski/SpeedTestC.git
PKG_SOURCE_PROTO:=git
2020-04-07 15:40:14 +00:00
PKG_SOURCE_VERSION:=64f8d8288cbbaa596a408fd3051a2b5bc831faa9
PKG_MAINTAINER:=Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
PKG_LICENSE:=GPL-2.0
2019-08-23 19:46:29 +00:00
PKG_BUILD_PARALLEL:=0
include $(INCLUDE_DIR)/package.mk
define Package/speedtestc
SECTION:=net
CATEGORY:=Network
MAINTAINER:=Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
TITLE:=Client for SpeedTest.net infrastructure written in pure C99 standard using only POSIX libraries.
2019-08-24 08:29:44 +00:00
DEPENDS:=+libopenssl
endef
define Package/speedtestc/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/SpeedTestC $(1)/usr/sbin/speedtestc
endef
$(eval $(call BuildPackage,$(PKG_NAME)))