summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 66379a4449b71e06a26d361c5f63c5393f5b138d (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
# Maintainer: Brian Bidulock <bidulock@openss7.org>

pkgname=wmmatrix
_pkgname=wmMatrix
pkgver=0.2
pkgrel=2
pkgdesc="Dock app that simulates the text scrolls from the movie \"The Matrix\""
url="http://www.dockapps.net/${pkgname}"
arch=('i686' 'x86_64')
license=('GPL')
depends=('libxpm')
source=("http://www.dockapps.net/download/${_pkgname}-${pkgver}.tar.gz")
md5sums=('4e9f0c94e78ad65ea9a564fba5f7a187')

build() {
  cd "$srcdir/$_pkgname-$pkgver"
  make clean
  make
}

package() {
  cd "$srcdir/$_pkgname-$pkgver"
  install -Dm0755 wmMatrix "$pkgdir/usr/bin/wmMatrix"
}

# vim: set sw=2 et: