forked from djmelik/archey
-
Notifications
You must be signed in to change notification settings - Fork 27
/
PKGBUILD
32 lines (29 loc) · 843 Bytes
/
PKGBUILD
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
31
32
# Maintainer: Laurie Clark-Michalek <[email protected]>
# Contributer: graysky <graysky AT archlinux DOR us>
pkgname=archey3
pkgver=0.5
pkgrel=1
pkgdesc="Python script to display system infomation alongside the Arch Linux logo."
arch=('any')
url="http://bluepeppers.github.com/archey3"
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=('archey')
provides=('archey')
source="git://github.com/bluepeppers/archey3.git"
md5sums=('SKIP')
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/archey/COPYING
}