This removes lines that set PKG_BUILD_DIR when the set value is no
different from the default value.
Specifically, the line is removed if the assigned value is:
* $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
The default PKG_BUILD_DIR was updated[1] to incorporate BUILD_VARIANT
if it is set, so now this is identical to the default value.
* $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)
if PKG_SOURCE_SUBDIR is set to $(PKG_NAME)-$(PKG_VERSION), making it
the same as the previous case
* $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
This is the same as the default PKG_BUILD_DIR when there is no
BUILD_VARIANT.
* $(BUILD_DIR)/[name]-$(PKG_VERSION)
where [name] is a string that is identical to PKG_NAME
[1]: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=e545fac8d968864a965edb9e50c6f90940b0a6c9
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 53e1692ae9
)
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libyubikey
|
|
PKG_VERSION:=1.13
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=libyubikey-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://developers.yubico.com/yubico-c/Releases
|
|
PKG_HASH:=04edd0eb09cb665a05d808c58e1985f25bb7c5254d2849f36a0658ffc51c3401
|
|
PKG_MAINTAINER:=Stuart B. Wilkins <stuwilkins@mac.com>
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_LICENSE:=BSD-2-Clause
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libyubikey
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=The Yuibco yubikey c library
|
|
URL:=https://developers.yubico.com/yubico-c/
|
|
endef
|
|
|
|
define Package/libyubikey/description
|
|
The c library for the yubikey from Yubico
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR)/usr/include
|
|
$(CP) $(PKG_BUILD_DIR)/yubikey.h $(STAGING_DIR)/usr/include
|
|
$(INSTALL_DIR) $(STAGING_DIR)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/.libs/libyubikey.so* $(STAGING_DIR)/usr/lib
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-shared \
|
|
--disable-static
|
|
|
|
define Package/libyubikey/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/.libs/modhex $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/.libs/ykgenerate $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/.libs/ykparse $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/.libs/libyubikey.so.* $(1)/usr/lib
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libyubikey))
|