mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-04 03:40:08 +00:00
To fix error when building on device. The file that is hardlinked/softlinked is removed through TERMUX_PKG_RM_AFTER_INSTALL so we could have also just removed the Makefile target that runs ln.
18 lines
690 B
Bash
18 lines
690 B
Bash
TERMUX_PKG_HOMEPAGE=https://www.freedesktop.org/wiki/Software/pkg-config/
|
|
TERMUX_PKG_DESCRIPTION="Helper tool used when compiling applications and libraries"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=0.29.2
|
|
TERMUX_PKG_REVISION=2
|
|
TERMUX_PKG_SRCURL=https://pkgconfig.freedesktop.org/releases/pkg-config-${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591
|
|
TERMUX_PKG_DEPENDS="glib"
|
|
TERMUX_PKG_RM_AFTER_INSTALL="bin/*-pkg-config"
|
|
TERMUX_PKG_GROUPS="base-devel"
|
|
|
|
termux_step_pre_configure() {
|
|
# Use ln -s instead of ln to avoid attempt at hardlinking on
|
|
# device
|
|
export ac_cv_prog_LN='ln -s'
|
|
}
|