diff options
author | mutantturkey <crazycal00@gmail.com> | 2010-04-21 17:46:39 -0400 |
---|---|---|
committer | mutantturkey <crazycal00@gmail.com> | 2010-04-21 17:46:39 -0400 |
commit | ff046f06fd21e48fda0777fde06fdb01bef3f1f3 (patch) | |
tree | 61312e503eddb4b92578d8324f07cf9e00b205e5 /dmenu_mocp/PKGBUILD |
initially putting on github
Diffstat (limited to 'dmenu_mocp/PKGBUILD')
-rw-r--r-- | dmenu_mocp/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dmenu_mocp/PKGBUILD b/dmenu_mocp/PKGBUILD new file mode 100644 index 0000000..5495e07 --- /dev/null +++ b/dmenu_mocp/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: Scott Garrett <Wintervenom@gmail.com> +# Contributor: Scott Garrett <Wintervenom@gmail.com> + +pkgname=dmenu-launch +pkgver=0.4.1 +pkgrel=1 +pkgdesc="A simple Dmenu-based application launcher. Launches binaries and XDG shortcuts." +url="http://wintervenom.mine.nu" +arch=('i686' 'x86_64') +license=('GPL') +depends=('dmenu' 'exo') +md5sums=('b5d4f686f4c5c4ff53a93436448f76c5') +source=( + 'dmenu-launch' +) + +build() { + cd $srcdir + install -d -m755 $pkgdir/usr/bin || return 1 + install -m755 $srcdir/dmenu-launch $pkgdir/usr/bin/dmenu-launch || return 1 + + return 0 +} |