void-packages/srcpkgs/python-atspi/template
2015-01-25 10:06:25 +01:00

57 lines
1.4 KiB
Plaintext

# Template file for 'python-atspi'
pkgname=python-atspi
version=2.14.0
revision=1
noarch=yes
wrksrc="pyatspi-${version}"
build_style=gnu-configure
python_versions="2.7 3.4"
hostmakedepends="pkg-config"
makedepends="at-spi2-core-devel>=2.10 python-gobject-devel>=3.10"
depends="${makedepends//-devel/}"
replaces="pyatspi>=0"
pycompile_module="pyatspi"
short_desc="Python2 bindings for AT-SPI"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.gnome.org/"
license="GPL-2"
distfiles="${GNOME_SITE}/pyatspi/${version%.*}/pyatspi-${version}.tar.xz"
checksum=b615dd81abccb929b0e120f64573b1f8c2a8f6d0651185d32d4fb7e75613bb48
do_configure() {
mkdir ${wrksrc}/python2-build
cd ${wrksrc}/python2-build
../configure ${configure_args} --with-python=/usr/bin/python
mkdir ${wrksrc}/python3.4-build
cd ${wrksrc}/python3.4-build
../configure ${configure_args} --with-python=/usr/bin/python3.4
}
do_build() {
cd ${wrksrc}/python2-build
make ${makejobs}
cd ${wrksrc}/python3.4-build
make ${makejobs}
}
do_install() {
cd ${wrksrc}/python2-build
make DESTDIR=${DESTDIR} install
cd ${wrksrc}/python3.4-build
make DESTDIR=${DESTDIR} install
}
python3.4-atspi_package() {
noarch=yes
depends="at-spi2-core>=2.10 python3.4-gobject>=3.10"
pycompile_version="3.4"
pycompile_module="pyatspi"
short_desc="${short_desc//Python2/Python3.4}"
pkg_install() {
vmove /usr/lib/python3.4
}
}