summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 88a223c855311b81745ae9ceed60d136a6f83015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Maintainer: Brian Bidulock <bidulock@openss7.org>
pkgname=wmmand
pkgver=1.3.2
pkgrel=1
pkgdesc="Mandelbrot set browser docapp for Window Maker"
arch=('i686' 'x86_64')
url="http://github.com/ciotog/wmMand"
license=('GPL')
depends=('libxpm')
makedepends=('git')
source=("$pkgname::git+https://github.com/ciotog/wmMand.git")
md5sums=('SKIP')

prepare() {
  cd $pkgname/wmMand
  gunzip wmMand.6.gz
}

build() {
  cd $pkgname
  make
}

package() {
  cd $pkgname/wmMand
  install -Dm0755 wmMand "$pkgdir/usr/bin/wmMand"
  install -Dm0644 wmMand.6 "$pkgdir/usr/share/man/man6/wmMand.6"
  install -Dm0644 wmMand.png "$pkgdir/usr/share/pixmaps/wmMand.png"
}