Date: Monday, July 6, 2020 @ 03:56:20 Author: polyzen Revision: 657954
Initial commit Added: ueberzug/ ueberzug/repos/ ueberzug/trunk/ ueberzug/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Added: ueberzug/trunk/PKGBUILD =================================================================== --- ueberzug/trunk/PKGBUILD (rev 0) +++ ueberzug/trunk/PKGBUILD 2020-07-06 03:56:20 UTC (rev 657954) @@ -0,0 +1,26 @@ +# Maintainer: Daniel M. Capella <[email protected]> +# Contributor: arkhan <[email protected]> + +pkgname=ueberzug +pkgver=18.1.6 +pkgrel=2 +pkgdesc='Command line util which allows to display images in combination with X11' +arch=('any') +url=https://github.com/seebye/ueberzug +license=('GPL3') +depends=('libxext' 'python-attrs' 'python-docopt' 'python-pillow' + 'python-psutil' 'python-setuptools' 'python-xlib') +provides=("python-$pkgname") +replaces=("python-$pkgname") +source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz") +sha256sums=('cbdf1006f7c2c6872c9d68a2b883dc278ceea155c207966da95eafb973c2498d') + +build() { + cd $pkgname-$pkgver + python setup.py build +} + +package() { + cd $pkgname-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 --skip-build +}
