updated on Thu Jan 19 04:14:35 UTC 2012
[aur-mirror.git] / omninotify / PKGBUILD
blob2e46e51bf638054b2b9db109f7e5558b37a7d58d
1 # Maintainer: Michele Mocciola <mickele>
2 # Contributor: David Moore <davidm@sjsoft.com>
4 pkgname=omninotify
5 pkgver=2.1
6 pkgrel=2
7 pkgdesc="A multi-threaded implementation of the CORBA Notification Service"
8 arch=('i686' 'x86_64')
9 url="http://omninotify.sourceforge.net/"
10 license=('GPL2' 'LGPL2')
11 depends=('omniorb')
12 makedepends=('patch' 'pkgconfig' 'coreutils')
13 source=(http://downloads.sourceforge.net/omninotify/omniNotify-$pkgver.tar.gz
14         omninotify_2.1_64bit.patch omninotify_2.1_iostream.patch)
16 build() {
17   cd ${srcdir}/omniNotify || return 1
18   patch -Np1 < ${srcdir}/omninotify_2.1_64bit.patch || return 1
19   patch -Np1 < ${srcdir}/omninotify_2.1_iostream.patch || return 1
20   ./configure --prefix=/usr || return 1
21   make || return 1
24 package() {
25   cd ${srcdir}/omniNotify || return 1
27   make DESTDIR=$startdir/pkg install || return 1
29   chmod 755 ${pkgdir}/usr ${pkgdir}/usr/bin ${pkgdir}/usr/lib ${pkgdir}/usr/include || return 1
31 md5sums=('6f5655e4f1cfff4d4dc21688ca4c9e8b'
32          '5318d4911e762912c6cd4404e00d4544'
33          '62da0b388e7fb5808a9da19ae1133273')