# Template file for 'geany-plugins' pkgname=geany-plugins version=1.34.0 revision=1 build_style=gnu-configure configure_args="PYTHON=/usr/bin/python2 --enable-all-plugins --disable-devhelp --disable-webhelper --disable-debugger --disable-geanypy --disable-multiterm" hostmakedepends="automake gettext-devel intltool libtool pkg-config vala glib-devel python-devel" makedepends="geany-devel lua51-devel ctpl-devel libwnck2-devel GConf-devel zlib-devel gpgme-devel enchant2-devel pygtk-devel libgit2-devel libsoup-devel gtkspell-devel webkit2gtk-devel vte3-devel" short_desc="Geany IDE plugins" maintainer="Steve Prybylski " license="GPL-2.0-or-later" homepage="http://plugins.geany.org" distfiles="https://github.com/geany/${pkgname}/archive/${version}.tar.gz" checksum=2c37cb4ece1a29230caa0527132e58d32d0c143f8bf64e2c3748058949a9395b pre_configure() { 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 } pre_build() { # XXX: Compile 'leg' for host arch. make CC=cc CFLAGS="-fPIE" -C "markdown/peg-markdown/peg-0.1.9" } # These plugins require extra dependencies geany-plugins-extra_package() { short_desc+=" - extra plugins" pkg_install() { for p in geanygendoc geanylua geanypg geniuspaste \ git-changebar pretty-printer spellcheck updatechecker; do if [ -x ${DESTDIR}/usr/lib/geany/${p}.so ]; then vmove usr/lib/geany/${p}.so fi if [ -x ${DESTDIR}/usr/share/geany-plugins/${p} ]; then vmove usr/share/geany-plugins/${p} fi if [ -x ${DESTDIR}/usr/share/doc/geany-plugins/${p} ]; then vmove usr/share/doc/geany-plugins/${p} fi done vmove usr/lib/geany-plugins/geanylua } }