2014-06-25 09:37:47 +00:00
|
|
|
# Template file for 'python-atspi'
|
|
|
|
pkgname=python-atspi
|
2015-01-25 09:06:25 +00:00
|
|
|
version=2.14.0
|
|
|
|
revision=1
|
2014-06-25 09:37:47 +00:00
|
|
|
noarch=yes
|
|
|
|
wrksrc="pyatspi-${version}"
|
|
|
|
build_style=gnu-configure
|
|
|
|
python_versions="2.7 3.4"
|
2015-01-25 09:06:25 +00:00
|
|
|
hostmakedepends="pkg-config"
|
2014-06-25 09:37:47 +00:00
|
|
|
makedepends="at-spi2-core-devel>=2.10 python-gobject-devel>=3.10"
|
2014-06-25 14:43:53 +00:00
|
|
|
depends="${makedepends//-devel/}"
|
2014-06-25 09:37:47 +00:00
|
|
|
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"
|
2015-01-25 09:06:25 +00:00
|
|
|
checksum=b615dd81abccb929b0e120f64573b1f8c2a8f6d0651185d32d4fb7e75613bb48
|
2014-06-25 09:37:47 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|