diff options
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,11 +1,13 @@ +# Maintainer (Archey): Laurie Clark-Michalek <bluepeppers@archlinux.us> +# Contributer (Archey): graysky <graysky AT archlinux DOR us> # Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> pkgname=paraboley -pkgver=0.2 +pkgver=0.3 pkgrel=1 -pkgdesc="Python script to display system infomation alongside the Parabola GNU / Linux-libre logo." +pkgdesc="Python script to display system infomation alongside the Parabola logo." arch=('any') -url="https://projects.parabola.nu/paraboley.git" +url="https://git.parabola.nu/packages/paraboley.git" license=('GPL') depends=('python') makedepends=('git' 'python-distribute') @@ -14,9 +16,9 @@ optdepends=( 'python-logbook-git: for logging' 'imagemagick: for default screenshot command' ) -conflicts=() -provides=('paraboley') -source="git://projects.parabola.nu/paraboley.git" +replaces=('archey' 'archey3') +source=("git://git.parabola.nu/packages/paraboley.git") +md5sums=('SKIP') pkgver() { cd ${pkgname} @@ -26,5 +28,5 @@ pkgver() { package() { cd "$srcdir/$pkgname" python setup.py install --root=${pkgdir} - install -D -m644 COPYING ${pkgdir}/usr/share/licenses/paraboley/COPYING + install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/COPYING } |