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 # Maintainer: Ivan Sichmann Freitas <ivansichfreitas@gmail.com>
12 pkgdesc="Simple bind from libnotify to Lua"
13 arch=('i686' 'x86_64')
14 url="http://w3.impa.br/~gabrield/code/lua_stuff/lnotify/"
16 depends=(lua libnotify)
18 source=(http://w3.impa.br/~gabrield/code/lua_stuff/lnotify/$pkgname-$_pkgver.tar.gz
19 lnotify.patch Makefile.patch)
20 md5sums=('62964328f4b72843e34fc5bdbce5ff12'
21 '9ecfdf9f53db0a074a3576f71fe7a0e0'
22 '4412dd73b1215b8f3d95291f9d6b84f1')
25 cd "$srcdir/$pkgname-$_pkgver"
26 patch < $startdir/lnotify.patch
27 patch < $startdir/Makefile.patch
33 cd "$srcdir/$pkgname-$_pkgver"
34 make DESTDIR="$pkgdir/" install
37 # vim:set ts=2 sw=2 et: