core/orbit2/PKGBUILD

23 lines
664 B
Bash
Raw Normal View History

2010-04-07 03:23:26 +08:00
# $Id: PKGBUILD 74305 2010-03-30 18:41:08Z ibiru $
2010-03-14 23:48:48 +08:00
# Maintainer: Jan de Groot <jan@archlinux.org>
pkgname=orbit2
2010-10-07 12:27:06 +08:00
pkgver=2.14.19
2010-03-14 23:48:48 +08:00
pkgrel=1
pkgdesc="Thin/fast CORBA ORB"
2010-04-07 03:23:26 +08:00
arch=('i686' 'x86_64')
2010-03-14 23:48:48 +08:00
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)
2010-10-07 12:27:06 +08:00
sha256sums=('55c900a905482992730f575f3eef34d50bda717c197c97c08fa5a6eafd857550')
2010-03-14 23:48:48 +08:00
build() {
cd "${srcdir}/ORBit2-${pkgver}"
./configure --prefix=/usr --disable-static || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}