diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-28 03:27:16 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-28 03:27:16 +0000 |
commit | 462391357aa5e749dc9908c15f3baa0b4416f3d8 (patch) | |
tree | 11d4d3f054aae9ffd869adc634054f64a16d83b8 /pcr/dratmenu | |
parent | 748e32a3a886569b58a27003e85b76be5746153d (diff) |
Tue Jan 28 03:22:21 UTC 2014
Diffstat (limited to 'pcr/dratmenu')
-rw-r--r-- | pcr/dratmenu/PKGBUILD | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/pcr/dratmenu/PKGBUILD b/pcr/dratmenu/PKGBUILD deleted file mode 100644 index 8d6a2b357..000000000 --- a/pcr/dratmenu/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# Contributor: ivoarch <ivkuzev@gmail.com> -# Maintainer : Parabola Aurélien DESBRIÈRES <aurelien@replicant.io> - -pkgname=dratmenu -pkgver=20121218 -pkgrel=1 -pkgdesc="ratpoison window dmenu" -arch=('any') -url="https://github.com/dimatura/dratmenu.git" -license=('GPL') -depends=('dmenu' 'python2') -makedepends=('git') - -_gitroot="https://github.com/dimatura/dratmenu.git" -_gitname="master" - -build() { - cd $srcdir - - if [ -d $srcdir/$pkgname ] ; then - msg "update git" - cd $pkgname && git pull origin - else - msg "clone git" - git clone $_gitroot - fi -} - -package() { - mkdir -p $pkgdir/usr/lib/python2.7/site-packages - cp -r $srcdir/$pkgname $pkgdir/usr/lib/python2.7/site-packages - mkdir -p $pkgdir/usr/bin - echo "#!/bin/bash - python2 /usr/lib/python2.7/site-packages/$pkgname/dratmenu.py" > $pkgdir/usr/bin/dratmenu - chmod +x $pkgdir/usr/bin/dratmenu -} |