mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 23:53:51 +02:00
vala: prefix important variables in pkg-config file with pc_sysrootdir
To allow cross compilation we need to pass those variables with the pc_sysrootdir prefix, otherwise the values will be from the host system.
This commit is contained in:
parent
1c1490217a
commit
fe8d02d0d6
1 changed files with 13 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'vala'
|
# Template file for 'vala'
|
||||||
pkgname=vala
|
pkgname=vala
|
||||||
version=0.42.5
|
version=0.42.5
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-graphviz"
|
configure_args="--disable-graphviz"
|
||||||
hostmakedepends="flex libxslt pkg-config automake libtool"
|
hostmakedepends="flex libxslt pkg-config automake libtool"
|
||||||
|
@ -28,6 +28,18 @@ pre_configure() {
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
# Prefix the variables 'datadir' 'vapidir' and 'vapidir_versioned'
|
||||||
|
# with pc_sysrootdir so it gets expanded to the value of
|
||||||
|
# PKG_CONFIG_SYSROOT_DIR, this is necessary for packages that
|
||||||
|
# query pkg-config for the variables as we need to return the
|
||||||
|
# values from the cross environment not the native one.
|
||||||
|
vsed -e 's|^datadir=.*|datadir=${pc_sysrootdir}/${datarootdir}|g' \
|
||||||
|
-e 's|^vapidir=.*|vapidir=${pc_sysrootdir}/${datadir}/vala/vapi|g' \
|
||||||
|
-e 's|^vapidir_versioned=.*|vapidir_versioned=${pc_sysrootdir}/${datadir}/vala-0.42/vapi|g' \
|
||||||
|
-i ${DESTDIR}/usr/lib/pkgconfig/vapigen-0.42.pc
|
||||||
|
}
|
||||||
|
|
||||||
libvala_package() {
|
libvala_package() {
|
||||||
short_desc+=" - shared library"
|
short_desc+=" - shared library"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue