diff options
Diffstat (limited to 'extra/orbit2/PKGBUILD')
-rw-r--r-- | extra/orbit2/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/orbit2/PKGBUILD b/extra/orbit2/PKGBUILD new file mode 100644 index 000000000..e141d91a7 --- /dev/null +++ b/extra/orbit2/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 91981 2010-09-28 16:24:10Z ibiru $ +# Maintainer: Jan de Groot <jan@archlinux.org> + +pkgname=orbit2 +pkgver=2.14.19 +pkgrel=1 +pkgdesc="Thin/fast CORBA ORB" +arch=('i686' 'x86_64') +license=('LGPL' 'GPL') +depends=('libidl2>=0.8.11') +makedepends=('pkgconfig') +options=('!libtool' '!makeflags') +url="http://www.gnome.org" +source=(http://ftp.gnome.org/pub/gnome/sources/ORBit2/2.14/ORBit2-${pkgver}.tar.bz2) +sha256sums=('55c900a905482992730f575f3eef34d50bda717c197c97c08fa5a6eafd857550') + +build() { + cd "${srcdir}/ORBit2-${pkgver}" + ./configure --prefix=/usr --disable-static + make + make DESTDIR="${pkgdir}" install +} |