Date: Monday, July 23, 2018 @ 15:34:13 Author: felixonmars Revision: 363036
archrelease: copy trunk to community-staging-x86_64 Added: python-pyotherside/repos/community-staging-x86_64/ python-pyotherside/repos/community-staging-x86_64/PKGBUILD (from rev 363034, python-pyotherside/trunk/PKGBUILD) ----------+ PKGBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) Copied: python-pyotherside/repos/community-staging-x86_64/PKGBUILD (from rev 363034, python-pyotherside/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-23 15:34:13 UTC (rev 363036) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Christian Hesse <m...@eworm.de> +# Contributor: Florian Schweikert <kel...@ist-total.org> + +pkgname=python-pyotherside +_pyname=pyotherside +pkgver=1.5.3 +pkgrel=2 +pkgdesc='Asynchronous Python 3 Bindings for Qt5' +arch=('x86_64') +url='https://thp.io/2011/pyotherside' +license=('ISC') +depends=('python' 'qt5-base' 'qt5-declarative' 'qt5-svg') +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/thp/${_pyname}/archive/${pkgver}.tar.gz") +sha256sums=('00049d5f42cac448368bc2a521edb8de36bb6d2a624e195b7f1004236758b805') + +build() { + cd "${_pyname}-${pkgver}/" + + qmake-qt5 + make +} + +package() { + cd "${_pyname}-${pkgver}/" + + make INSTALL_ROOT="${pkgdir}/" install +}