blob: 530e802d89093c94ec829cd6ae95ad2bd62aaaee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $Id: PKGBUILD 206657 2014-03-04 11:58:53Z jgc $
# Maintainer: Jan de Groot <jan@archlinux.org>
pkgname=orbit2
pkgver=2.14.19
pkgrel=3
pkgdesc="Thin/fast CORBA ORB"
arch=('i686' 'x86_64')
license=('LGPL' 'GPL')
depends=('libidl2')
makedepends=('gtk-doc')
options=('!makeflags' 'staticlibs')
url="http://www.gnome.org"
source=(http://ftp.gnome.org/pub/gnome/sources/ORBit2/2.14/ORBit2-${pkgver}.tar.bz2
git-fixes.patch)
sha256sums=('55c900a905482992730f575f3eef34d50bda717c197c97c08fa5a6eafd857550'
'7f145ed715d5a1d7f6ccf1e9bcce6a6a584a6b125845a84a3d69bfe30b0d6e04')
prepare() {
cd ORBit2-$pkgver
patch -Np1 -i ../git-fixes.patch
}
build() {
cd ORBit2-$pkgver
autoreconf -fi
./configure --prefix=/usr --disable-static
make
}
package() {
cd ORBit2-$pkgver
make DESTDIR="${pkgdir}" install
}
|