updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / wmwave / PKGBUILD
blob6893415fd03044b23f4535c3bc3517100689bd49
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Christian von Essen <christian@mvonessen.de>
7 pkgname=wmwave
8 pkgver=0.4
9 pkgrel=1
10 pkgdesc="dockapp to display statistical information about a current wifi connection"
11 arch=('x86_64' 'i686')
12 url="http://wmwave.sourceforge.net"
13 license=('GPL')
14 depends=(libxpm)
15 source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-0-4.tgz Makefile)
16 md5sums=('8728507eccb01a9749336f53ac4182c5'
17          '2f22597ee8fb3bc91d00f352acbbafae')
18 build() {
19   cp "$srcdir/Makefile" "$srcdir/$pkgname/"
20   cd "$srcdir/$pkgname"
22   make || return 1
23   make DESTDIR="$pkgdir/" install
26 # vim:set ts=2 sw=2 et: