diff options
author | graysky <graysky@archlinux.us> | 2013-06-09 11:52:13 -0400 |
---|---|---|
committer | graysky <graysky@archlinux.us> | 2013-06-09 11:52:13 -0400 |
commit | d61166a0e31bc9160c95c5ea79d001e6f7f4315a (patch) | |
tree | 0f33da8135be483f079199c19b934a29f1737b66 | |
parent | b4cc4bb04e5d3f6f72b28800932affba474a07b7 (diff) |
updated PKGBUILD for pacman 4.x
-rw-r--r-- | PKGBUILD | 43 |
1 files changed, 16 insertions, 27 deletions
@@ -1,44 +1,33 @@ # Maintainer: Laurie Clark-Michalek <bluepeppers@archlinux.us> +# Contributer: graysky <graysky AT archlinux DOR us> pkgname=archey3 -pkgver=20120517 +pkgver=0.4.29.gb4cc4bb pkgrel=1 -pkgdesc="Python script to display system infomation alongside the Arch Linux logo" +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=( - 'python3-mpd-git: python mpd libary for mpd protocol (optional, mpc can be used instead)' - 'python-logbook-git: for logging' - 'imagemagick: for default screenshot command' +'python3-mpd-git: python mpd libary for mpd protocol (optional, mpc can be used instead)' +'python-logbook-git: for logging' +'imagemagick: for default screenshot command' ) conflicts=('archey') provides=('archey') -md5sums=() +source="git://github.com/bluepeppers/archey3.git" +md5sums=('SKIP') -_gitroot="git://github.com/bluepeppers/archey3.git" -_gitname="archey3" - -build() { - cd ${srcdir} - msg "Connecting to GIT server...." - - if [ -d archey3 ] ; then - cd archey3 && git pull origin - msg "The local files are updated." - else - git clone ${_gitroot} - fi - - msg "GIT checkout done or server timeout" - msg "Starting make..." - - cd ${srcdir}/${_gitname} +pkgver() { + cd ${pkgname} + git describe --always | sed 's|-|.|g' +} +package() { + cd ${pkgname} python setup.py install --root=${pkgdir} - # Comment line below to install side by side with standard archey - ln -s /usr/bin/archey3 ${pkgdir}/usr/bin/archey || return 1 - install -D -m644 COPYING ${pkgdir}/usr/share/licenses/archey/COPYING + ln -s /usr/bin/archey3 ${pkgdir}/usr/bin/archey + install -D -m644 COPYING ${pkgdir}/usr/share/licenses/archey/COPYING } |