updated on Thu Jan 5 13:17:10 UTC 2012
[aur-mirror.git] / lnotify / PKGBUILD
blob87272a2ee3d3d8224743eb8d69a5f8878eea5e5c
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>
8 pkgname=lnotify
9 pkgver=0.2_6
10 _pkgver=0.2-6
11 pkgrel=2
12 pkgdesc="Simple bind from libnotify to Lua"
13 arch=('i686' 'x86_64')
14 url="http://w3.impa.br/~gabrield/code/lua_stuff/lnotify/"
15 license=('MIT')
16 depends=(lua libnotify)
17 #install=
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')
24 build() {
25   cd "$srcdir/$pkgname-$_pkgver"
26   patch < $startdir/lnotify.patch
27   patch < $startdir/Makefile.patch
28   make
29   make notify.so
32 package() {
33   cd "$srcdir/$pkgname-$_pkgver"
34   make DESTDIR="$pkgdir/" install
37 # vim:set ts=2 sw=2 et: