diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/musca/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/musca/PKGBUILD')
-rw-r--r-- | community/musca/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/musca/PKGBUILD b/community/musca/PKGBUILD new file mode 100644 index 000000000..34ab9b843 --- /dev/null +++ b/community/musca/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 31936 2010-11-08 00:00:11Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Murtuza Akhtari <inxsible at gmail dot com> + +pkgname=musca +pkgver=0.9.24 +pkgrel=1 +pkgdesc='A simple X11 dynamic window manager with features nicked from ratpoison and dwm.' +arch=('i686' 'x86_64') +url='http://aerosuidae.net/musca/' +license=('GPL3') +depends=('libx11' 'dmenu') +source=("http://aerosuidae.net/${pkgname}-${pkgver}.tgz") +md5sums=('e067a8e39b1a97d62fc8e43800edee70') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}" + install -Dm644 "${pkgname}.1" "${pkgdir}/usr/share/man/man1/${pkgname}.1" +} |