2014-06-04 05:01:48 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010-2012 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=miniupnpc
|
2022-01-04 07:23:42 +00:00
|
|
|
PKG_VERSION:=2.2.3
|
treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.
The following temporary change was made to the core:
diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))
COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))
all:
FORCE: ;
And this command used to fix affected packages:
for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
make package/$i/download
done
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 16:32:27 +00:00
|
|
|
PKG_RELEASE:=1
|
2014-06-04 05:01:48 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2019-04-13 22:32:08 +00:00
|
|
|
PKG_SOURCE_URL:=https://miniupnp.tuxfamily.org/files
|
2022-01-04 07:23:42 +00:00
|
|
|
PKG_HASH:=dce41b4a4f08521c53a0ab163ad2007d18b5e1aa173ea5803bd47a1be3159c24
|
2019-04-13 22:32:08 +00:00
|
|
|
|
2020-02-15 04:30:13 +00:00
|
|
|
PKG_MAINTAINER:=
|
2019-09-21 22:35:09 +00:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
2019-04-13 22:32:08 +00:00
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
2019-09-12 12:13:21 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:miniupnp_project:miniupnp
|
2014-06-04 05:01:48 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2021-06-10 23:27:06 +00:00
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
2014-06-04 05:01:48 +00:00
|
|
|
|
|
|
|
define Package/miniupnpc/Default
|
|
|
|
TITLE:=Lightweight UPnP
|
2018-09-08 18:39:06 +00:00
|
|
|
URL:=https://miniupnp.tuxfamily.org
|
2014-06-04 05:01:48 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/miniupnpc
|
|
|
|
$(call Package/miniupnpc/Default)
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
SUBMENU:=Firewall
|
|
|
|
TITLE+= client
|
|
|
|
DEPENDS:=+libminiupnpc
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libminiupnpc
|
|
|
|
$(call Package/miniupnpc/Default)
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE+= library
|
|
|
|
endef
|
|
|
|
|
2019-04-13 22:32:08 +00:00
|
|
|
CMAKE_OPTIONS += -DUPNPC_BUILD_TESTS=OFF
|
2014-06-04 05:01:48 +00:00
|
|
|
|
2019-04-13 22:32:08 +00:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
|
2014-06-04 05:01:48 +00:00
|
|
|
|
2020-12-12 22:23:38 +00:00
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/miniupnpc/ $(1)/usr/include/
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.{a,so*} $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2014-06-04 05:01:48 +00:00
|
|
|
define Package/miniupnpc/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2019-04-13 22:32:08 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/upnpc-shared $(1)/usr/bin/upnpc
|
2016-12-21 03:03:40 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/listdevices $(1)/usr/bin/
|
2014-06-04 05:01:48 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libminiupnpc/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2019-04-13 22:32:08 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libminiupnpc.so.* $(1)/usr/lib/
|
2014-06-04 05:01:48 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,miniupnpc))
|
|
|
|
$(eval $(call BuildPackage,libminiupnpc))
|