diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-11-02 11:13:22 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2019-11-02 11:14:50 -0700 |
commit | 243a1a13241dffc3d8da2830d825cbc535c1e33d (patch) | |
tree | 63041e4d601a902b7b4430a92f58c1badfa29fe0 /devel/pkg-config | |
parent | a1a2544bde1c93f34ec9cd16e9f2282c4324c44f (diff) |
pkg-config: Add CONFLICTS for pkgconf
Fixed license information.
Added PKG_BUILD_PARALLEL for faster compilation.
Remove PKG_ASLR_PIE. It seems it's going through a rework.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'devel/pkg-config')
-rw-r--r-- | devel/pkg-config/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/devel/pkg-config/Makefile b/devel/pkg-config/Makefile index 5bfebd28e..3ea917e27 100644 --- a/devel/pkg-config/Makefile +++ b/devel/pkg-config/Makefile @@ -9,16 +9,18 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pkg-config PKG_VERSION:=0.29.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE_URL:=https://pkg-config.freedesktop.org/releases/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_HASH:=6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591 + PKG_MAINTAINER:=Heinrich Schuchardt <xypron.glpk@gmx.de> PKG_LICENSE:=GPL-2.0-or-later +PKG_LICENSE_FILES:=COPYING -PKG_ASLR_PIE:=1 PKG_INSTALL:=1 +PKG_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/nls.mk @@ -29,6 +31,7 @@ define Package/pkg-config TITLE:=pkg-config URL:=https://www.freedesktop.org/wiki/Software/pkg-config/ DEPENDS:=+glib2 $(INTL_DEPENDS) + CONFLICTS:=pkgconf endef define Package/pkg-config/description @@ -39,6 +42,8 @@ define Package/pkg-config/description other libraries). endef +TARGET_CFLAGS += $(FPIC) + define Package/pkg-config/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/pkg-config $(1)/usr/bin/ |