summaryrefslogtreecommitdiff
path: root/pcr/paraboley-git/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/paraboley-git/PKGBUILD')
-rw-r--r--pcr/paraboley-git/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/pcr/paraboley-git/PKGBUILD b/pcr/paraboley-git/PKGBUILD
new file mode 100644
index 000000000..268175879
--- /dev/null
+++ b/pcr/paraboley-git/PKGBUILD
@@ -0,0 +1,32 @@
+# Maintainer (Parabola): Aurélien DESBRIÈRES <aurelien@hackers.camp>
+
+_pkgname=paraboley
+pkgname=${_pkgname}-git
+pkgver=6
+pkgrel=1
+pkgdesc="Python script to display system infomation alongside the Parabola GNU / Linux-libre logo."
+arch=('any')
+url="https://projects.parabola.nu/paraboley.git"
+license=('GPL')
+depends=('python')
+makedepends=('git' 'python-distribute')
+optdepends=(
+'python-mpd-git: python libary for mpd interaction',
+'python-logbook-git: for logging'
+'imagemagick: for default screenshot command'
+)
+conflicts=()
+provides=('paraboley')
+source=("git://projects.parabola.nu/paraboley.git")
+md5sums=('SKIP')
+
+pkgver() {
+ cd ${_pkgname}
+ git rev-list --count HEAD
+}
+
+package() {
+ cd "$_pkgname"
+ python setup.py install --root=${pkgdir}
+ install -D -m644 COPYING ${pkgdir}/usr/share/licenses/paraboley/COPYING
+}