forked from djmelik/archey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPKGBUILD
More file actions
30 lines (27 loc) · 804 Bytes
/
PKGBUILD
File metadata and controls
30 lines (27 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp>
pkgname=paraboley
pkgver=0.1
pkgrel=1
pkgdesc="Python script to display system infomation alongside the Parabola GNU / Linux-libre logo."
arch=('any')
url="http://aurelien-git.github.com/paraboley"
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://github.com/aurelien-git/paraboley.git"
pkgver() {
cd ${pkgname}
git describe --always | sed 's|-|.|g'
}
package() {
cd "$srcdir/$pkgname"
python setup.py install --root=${pkgdir}
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/paraboley/COPYING
}