Add 'py3status-git/' from commit '925420f806bff6a7ee3d7874db08e19f17677d8e'
git-subtree-dir: py3status-git git-subtree-mainline:7626a2d506
git-subtree-split:925420f806
This commit is contained in:
commit
b31865b705
2 changed files with 50 additions and 0 deletions
18
py3status-git/.SRCINFO
Normal file
18
py3status-git/.SRCINFO
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
pkgbase = py3status-git
|
||||||
|
pkgdesc = An extensible i3status replacement/wrapper written in python (development version)
|
||||||
|
pkgver = 2.4.r42.gc4535a4
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/ultrabug/py3status
|
||||||
|
arch = any
|
||||||
|
license = custom: Simplified BSD
|
||||||
|
makedepends = git
|
||||||
|
depends = python
|
||||||
|
depends = python-setuptools
|
||||||
|
optdepends = i3status: for some of the functionality
|
||||||
|
provides = py3status
|
||||||
|
conflicts = py3status
|
||||||
|
source = git+https://github.com/ultrabug/py3status.git
|
||||||
|
md5sums = SKIP
|
||||||
|
|
||||||
|
pkgname = py3status-git
|
||||||
|
|
32
py3status-git/PKGBUILD
Normal file
32
py3status-git/PKGBUILD
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Maintainer: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG
|
||||||
|
# Contributor: Johannes Fürmann
|
||||||
|
|
||||||
|
pkgname=py3status-git
|
||||||
|
pkgver=2.4.r42.gc4535a4
|
||||||
|
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
|
||||||
|
install -m644 doc/* README.rst CHANGELOG "$pkgdir"/usr/share/doc/$pkgname
|
||||||
|
# license
|
||||||
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
||||||
|
}
|
Loading…
Reference in a new issue