Date: Thursday, November 12, 2020 @ 17:52:29 Author: foutrelis Revision: 752862
archrelease: copy trunk to community-staging-any Added: ueberzug/repos/community-staging-any/ ueberzug/repos/community-staging-any/PKGBUILD (from rev 752860, ueberzug/trunk/PKGBUILD) ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Copied: ueberzug/repos/community-staging-any/PKGBUILD (from rev 752860, ueberzug/trunk/PKGBUILD) =================================================================== --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2020-11-12 17:52:29 UTC (rev 752862) @@ -0,0 +1,26 @@ +# Maintainer: Daniel M. Capella <poly...@archlinux.org> +# Contributor: arkhan <ark...@disroot.org> + +pkgname=ueberzug +pkgver=18.1.6 +pkgrel=3 +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 +}