diff options
author | Brian Bidulock | 2015-06-10 22:33:41 -0600 |
---|---|---|
committer | Brian Bidulock | 2015-06-10 22:33:41 -0600 |
commit | 4f8d1c2bb9c965af1f85a9c2e3610d536a0fcdc9 (patch) | |
tree | 552d6a3a2c2116a70f41656565bbf801b6bb4974 /PKGBUILD | |
download | aur-4f8d1c2bb9c965af1f85a9c2e3610d536a0fcdc9.tar.gz |
initial version
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..9f98012642df --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,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: |