aboutsummaryrefslogtreecommitdiff
path: root/test-curl/Makefile
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2017-02-16 13:44:36 +0100
committerKarel Kočí <karel.koci@nic.cz>2017-02-16 13:44:36 +0100
commitc2adfd2f707be8f4fca0f0cbdd45802206141c18 (patch)
tree1067b7ac1baef2b74690bf0594e4437122e6bbcd /test-curl/Makefile
parent9f0f3e1b06456f43bc02e00839238a664b4ee6fe (diff)
downloadturris-myrepo-c2adfd2f707be8f4fca0f0cbdd45802206141c18.tar.gz
turris-myrepo-c2adfd2f707be8f4fca0f0cbdd45802206141c18.tar.bz2
turris-myrepo-c2adfd2f707be8f4fca0f0cbdd45802206141c18.zip
Deactivate curl-test
Diffstat (limited to 'test-curl/Makefile')
-rw-r--r--test-curl/Makefile34
1 files changed, 0 insertions, 34 deletions
diff --git a/test-curl/Makefile b/test-curl/Makefile
deleted file mode 100644
index 2eecc19..0000000
--- a/test-curl/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-#
-## Copyright (C) 2016 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:=test-curl
-PKG_VERSION:=11
-PKG_RELEASE:=1
-PKG_MAINTAINER:=Karel Koci
-PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
-
-include $(INCLUDE_DIR)/package.mk
-
-define Package/test-curl
- TITLE:=test-curl
- DEPENDS:=+libcurl +libevent2
-endef
-
-define Build/Compile
- cp -rf ./test $(PKG_BUILD_DIR)/
- cd $(PKG_BUILD_DIR)/test && ./configure
- $(MAKE_VARS) $(MAKE) -C $(PKG_BUILD_DIR)/test $(MAKE_FLAGS)
-endef
-
-define Package/test-curl/install
- $(INSTALL_DIR) $(1)/usr/bin/
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/test/test $(1)/usr/bin/test-curl
-endef
-
-$(eval $(call BuildPackage,test-curl))