summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9f98012642df2ddae20ecb7d29cee2a3f4cd901e (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
31
32
33
34
35
36
# Maintainer: Brian Bidulock <bidulock@openss7.org>
# Contributor: Mario Blättermann <mariobl@gnome.org>

pkgname=wmblob
pkgver=1.0.4
pkgrel=1
pkgdesc="wmblob shows some blobs moving around"
arch=('i686' 'x86_64')
#url="http://dockapps.windowmaker.org/file.php/id/155"
#url="http://web.archive.org/web/20121029030832/http://dockapps.windowmaker.org/file.php/id/155"
url="https://github.com/bbidulock/wmblob"
license=('GPL')
groups=(x11)
depends=('gtk2')
#source=("http://dockapps.windowmaker.org/download.php/id/541/wmblob-1.0.3.tar.bz2")
#source=("wmblob-1.0.3.tar.bz2")
source=("https://github.com/bbidulock/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2")
noextract=()
md5sums=('0b4f9ac8cefd943e2db6882e877a971d')

build() {
  cd $startdir/src/$pkgname-$pkgver
  ./configure --prefix=/usr \
              --mandir=/usr/share/man \
              --x-includes=/usr/include/X11 \
              --x-libraries=/usr/lib/X11
  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et: