You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
720 B
23 lines
720 B
4 years ago
|
################################################################################
|
||
|
#
|
||
|
# pkgconf
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
PKGCONF_VERSION = 1.7.3
|
||
|
PKGCONF_DIR = pkgconf-$(PKGCONF_VERSION)
|
||
|
PKGCONF_SOURCE = pkgconf-$(PKGCONF_VERSION).tar.gz
|
||
|
PKGCONF_SITE = https://distfiles.dereferenced.org/pkgconf
|
||
|
|
||
|
# -----------------------------------------------------------------------------
|
||
|
|
||
|
HOST_PKG_CONFIG = $(HOST_DIR)/bin/pkg-config
|
||
|
|
||
|
define HOST_PKGCONF_INSTALL_PKG_CONFIG
|
||
|
$(INSTALL_EXEC) $(PKG_FILES_DIR)/pkg-config.in $(HOST_PKG_CONFIG)
|
||
|
endef
|
||
|
HOST_PKGCONF_HOST_FINALIZE_HOOKS += HOST_PKGCONF_INSTALL_PKG_CONFIG
|
||
|
|
||
|
host-pkgconf: | $(HOST_DIR)
|
||
|
$(call host-autotools-package)
|