Date: Monday, March 24, 2014 @ 16:00:30 Author: fyan Revision: 108191
addpkg: python-pyx 0.13-2 Modified: python-pyx/trunk/PKGBUILD ----------+ PKGBUILD | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-03-24 13:39:22 UTC (rev 108190) +++ PKGBUILD 2014-03-24 15:00:30 UTC (rev 108191) @@ -1,19 +1,21 @@ -# contributor: Douglas Soares de Andrade <[email protected]> +# Maintainer: Felix Yan <[email protected]> +# Contributor: Douglas Soares de Andrade <[email protected]> # Contributor: William Rea <[email protected]> -# Maintainer: Stefan Husmann <[email protected]> +# Contributor: Stefan Husmann <[email protected]> -pkgname=python2-pyx -pkgver=0.11.1 -pkgrel=1 -pkgdesc="Python library for the creation of PostScript and PDF files" +pkgname=python-pyx +pkgver=0.13 +pkgrel=2 +pkgdesc='Python library for the creation of PostScript and PDF files' arch=('any') url="http://pyx.sourceforge.net" license=('GPL') -depends=('python2' 'texlive-core') -source=(http://downloads.sourceforge.net/sourceforge/pyx/PyX-$pkgver.tar.gz) -md5sums=('b8bd41d61a164426c162865b2c121f1b') +depends=('python' 'texlive-core') +source=("http://downloads.sourceforge.net/sourceforge/pyx/PyX-$pkgver.tar.gz") +sha512sums=('cab0c22f0862ae20cff92504ededf4fcf5820d5773130fb258de1a95d295ca4fe657b85d5ccd52021a4f84403e6db8eebe9f676fa405781738502456123eb05c') -build() { - cd $srcdir/PyX-$pkgver - python2 setup.py install --root=$pkgdir - } +package() { + cd PyX-$pkgver + python3 setup.py install -O1 --root="$pkgdir" +} +
