mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 08:51:13 +00:00
e8725a932e
Different from OPKG, APK uses a deterministic version schema which chips the version into chunks and compares them individually. This enforces a certain schema which was previously entirely flexible. - Releases are added at the very and end prefixed with an `r` like `1.2.3-r3`. - Hashes are prefixed with a `~` like `1.2.3~abc123`. - Dates become semantic versions, like `2024.04.01` - Extra tags are possible like `_git`, `_alpha` and more. For full details see the APK test list: https://gitlab.alpinelinux.org/alpine/apk-tools/-/blob/master/test/version.data Signed-off-by: Paul Spooren <mail@aparcar.org>
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=uclient
|
|
PKG_RELEASE=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/uclient.git
|
|
PKG_MIRROR_HASH:=761d8b357eb0c37a0833cc76106948c5f2bfe9abe785728996a8d050a25b0a8a
|
|
PKG_SOURCE_DATE:=2023-04-13
|
|
PKG_SOURCE_VERSION:=007d945467499f43656b141171d31f5643b83a6c
|
|
CMAKE_INSTALL:=1
|
|
|
|
PKG_BUILD_DEPENDS:=ustream-ssl
|
|
|
|
PKG_LICENSE:=ISC
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/libuclient
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=HTTP/1.1 client library
|
|
ABI_VERSION:=20201210
|
|
DEPENDS:=+libubox
|
|
endef
|
|
|
|
define Package/uclient-fetch
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Tiny wget replacement using libuclient
|
|
ALTERNATIVES:=200:/usr/bin/wget:/bin/uclient-fetch
|
|
PROVIDES:=wget
|
|
DEPENDS:=+libuclient
|
|
endef
|
|
|
|
define Package/libuclient/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libuclient.so $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/uclient-fetch/install
|
|
$(INSTALL_DIR) $(1)/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/uclient-fetch $(1)/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libuclient))
|
|
$(eval $(call BuildPackage,uclient-fetch))
|