diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-07-07 14:08:00 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2020-07-07 14:54:52 -0700 |
commit | 508e19c054a73b3b6294c850d0e66442cd9b4baf (patch) | |
tree | 70f5e298528813b8c06c446a3998ca02a643a191 /libs/yubico-pam | |
parent | 04802c492730c4352b164d8eb6f5c5a755cb6858 (diff) |
yubico-pam: fix compilation with fixed ykpers
Massively cleaned up the Makefile for simplicity.
Added PKG_INSTALL and PKG_BUILD_PARALLEL for consistency between packages.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/yubico-pam')
-rw-r--r-- | libs/yubico-pam/Makefile | 35 |
1 files changed, 14 insertions, 21 deletions
diff --git a/libs/yubico-pam/Makefile b/libs/yubico-pam/Makefile index 69fe4a633..7742832c1 100644 --- a/libs/yubico-pam/Makefile +++ b/libs/yubico-pam/Makefile @@ -2,17 +2,19 @@ include $(TOPDIR)/rules.mk PKG_NAME:=yubico-pam PKG_VERSION:=2.26 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=pam_yubico-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://developers.yubico.com/yubico-pam/Releases PKG_HASH:=2de96495963fefd72b98243952ca5d5ec513e702c596e54bc667ef6b5e252966 +PKG_BUILD_DIR:=$(BUILD_DIR)/pam_yubico-$(PKG_VERSION) + PKG_MAINTAINER:=Stuart B. Wilkins <stuwilkins@mac.com> -PKG_BUILD_DEPENDS:=ykclient ykpers libyubikey libpam curl PKG_LICENSE_FILES:=COPYING PKG_LICENSE:=BSD-2-Clause -PKG_BUILD_DIR:=$(BUILD_DIR)/pam_yubico-$(PKG_VERSION) +PKG_INSTALL:=1 +PKG_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/package.mk @@ -25,27 +27,18 @@ define Package/yubico-pam endef define Package/yubico-pam/description - The Yubico PAM module provides an easy way to integrate the YubiKey + The Yubico PAM module provides an easy way to integrate the YubiKey into your existing user authentication infrastructure. endef - -CONFIGURE_VARS += YKPERS_CFLAGS=-I$(STAGING_DIR)/usr/include \ - YKPERS_LIBS=-L$(STAGING_DIR)/usr/lib \ - LDFLAGS="-Wl,-rpath-link,$(STAGING_DIR)/usr/lib \ - -L$(STAGING_DIR)/usr/lib" - -CONFIGURE_ARGS += --without-ldap \ - --enable-shared \ - --disable-static \ - -define Build/Compile - $(call Build/Compile/Default, \ - LDFLAGS="-L$(STAGING_DIR)/usr/lib -lykpers-1") -endef + +CONFIGURE_ARGS += \ + --enable-shared \ + --disable-static \ + --without-ldap define Package/yubico-pam/install - $(INSTALL_DIR) $(1)/lib/security - $(CP) $(PKG_BUILD_DIR)/.libs/pam_yubico.so* $(1)/lib/security + $(INSTALL_DIR) $(1)/usr/lib/security + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/security/pam_yubico.so $(1)/usr/lib/security endef -$(eval $(call BuildPackage,yubico-pam,+ykclient,+ykpers,+libyubikey)) +$(eval $(call BuildPackage,yubico-pam)) |