geany-plugins: fix cross compile for geanypy and markdown plugins
This commit is contained in:
parent
4d01341150
commit
7c2eed0352
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'geany-plugins'
|
# Template file for 'geany-plugins'
|
||||||
pkgname=geany-plugins
|
pkgname=geany-plugins
|
||||||
version=1.25
|
version=1.25
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
# XXX: gitchangebar plugin not compatible with libgit2 right now
|
# XXX: gitchangebar plugin not compatible with libgit2 right now
|
||||||
configure_args="--enable-all-plugins --disable-gitchangebar"
|
configure_args="--enable-all-plugins --disable-gitchangebar"
|
||||||
|
@ -17,18 +17,22 @@ homepage="http://plugins.geany.org"
|
||||||
distfiles="https://github.com/geany/geany-plugins/archive/1.25.tar.gz"
|
distfiles="https://github.com/geany/geany-plugins/archive/1.25.tar.gz"
|
||||||
checksum=626e606b5766685c86bae622f78912900b95b4a1c43c086ed9a3862691f8b257
|
checksum=626e606b5766685c86bae622f78912900b95b4a1c43c086ed9a3862691f8b257
|
||||||
|
|
||||||
replaces="geany-plugins<${version}"
|
|
||||||
|
|
||||||
if [ "$CROSS_BUILD" ]; then
|
|
||||||
# these plugins break cross-compile
|
|
||||||
configure_args+=" --disable-geanypy --disable-markdown"
|
|
||||||
fi
|
|
||||||
|
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
NOCONFIGURE=1 ./autogen.sh
|
NOCONFIGURE=1 ./autogen.sh
|
||||||
|
|
||||||
|
if [ "$CROSS_BUILD" ]; then
|
||||||
|
# Use cross prefix for python
|
||||||
|
sed -e "s;-L\$ac_python_libdir;-L${XBPS_CROSS_BASE}/usr/lib;g" \
|
||||||
|
-e "s;PYTHON_CPPFLAGS=\$python_path;PYTHON_CPPFLAGS=-I${XBPS_CROSS_BASE}/usr/include/python2.7;g" -i configure
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# these plugins require extra dependencies
|
pre_build() {
|
||||||
|
# XXX: Compile 'leg' for host arch.
|
||||||
|
make CC=cc CFLAGS="" -C "markdown/peg-markdown/peg-0.1.9"
|
||||||
|
}
|
||||||
|
|
||||||
|
# These plugins require extra dependencies
|
||||||
geany-plugins-extra_package() {
|
geany-plugins-extra_package() {
|
||||||
short_desc="${_short_desc} - extra plugins"
|
short_desc="${_short_desc} - extra plugins"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
|
@ -44,6 +48,10 @@ geany-plugins-extra_package() {
|
||||||
vmove usr/share/doc/geany-plugins/${p}
|
vmove usr/share/doc/geany-plugins/${p}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
vmove usr/lib/geany-plugins/geanylua
|
||||||
|
vmove usr/lib/geany/geanypy
|
||||||
|
vmove usr/share/geany/geanypy
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue