2021-09-23 12:10:17 +02:00
|
|
|
# Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
|
|
|
|
# Contributor: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG
|
2015-07-07 11:32:45 +02:00
|
|
|
# Contributor: Johannes Fürmann
|
|
|
|
|
|
|
|
pkgname=py3status-git
|
2021-09-23 12:10:17 +02:00
|
|
|
pkgver=3.39.r4.gcafe0c7a
|
2015-07-07 11:32:45 +02:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="An extensible i3status replacement/wrapper written in python (development version)"
|
|
|
|
url="https://github.com/ultrabug/py3status"
|
|
|
|
arch=('any')
|
|
|
|
license=('custom: Simplified BSD')
|
|
|
|
conflicts=('py3status')
|
|
|
|
provides=('py3status')
|
|
|
|
depends=('python' 'python-setuptools')
|
|
|
|
makedepends=('git')
|
|
|
|
optdepends=('i3status: for some of the functionality')
|
|
|
|
source=("git+https://github.com/ultrabug/py3status.git")
|
|
|
|
md5sums=('SKIP')
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd py3status
|
|
|
|
git describe --long --tags | sed 's/-/.r/;s/-/./g'
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd py3status
|
|
|
|
python setup.py install --root="$pkgdir/" --optimize=1
|
|
|
|
# doc
|
|
|
|
install -d "$pkgdir"/usr/share/doc/$pkgname
|
2021-09-23 12:10:17 +02:00
|
|
|
install -m644 docs/user-guide/* README.md CHANGELOG "$pkgdir"/usr/share/doc/$pkgname
|
2015-07-07 11:32:45 +02:00
|
|
|
# license
|
|
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
|
|
}
|