blob: d5c5cbfb951c28351361d5b8abf04a08a4c9136e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Brian Bidulock <bidulock@openss7.org>
# Contributor: libernux <dutchman55@gmx.com>
pkgname=wmcalc
pkgver=0.6
pkgrel=1
pkgdesc="Dockapp that performs all the functions (and eventually more) of a simple four function calculator"
arch=('i686' 'x86_64')
url="http://www.dockapps.net/${pkgname}"
license=('GPL')
groups=('x11')
depends=('libxpm')
source=("http://www.dockapps.net/download/${pkgname}-${pkgver}.tar.gz")
md5sums=('0d84c4e1cdb8742c5abf03a34ea03540')
build() {
cd dockapps-*
make clean
make INCLUDES=-I/usr/include/X11
}
package() {
cd dockapps-*
make PREFIX=/usr DESTDIR="$pkgdir" install
}
|