blob: fc5b2b399fcaffe3a5441b3dad8717a1b97b332f (
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
|
# Description: Code for an ORB written in C will spontaneously evolve here
# URL: http://www.labs.redhat.com/orbit/
# Maintainer: Erich Eckner, erich at eckner dot net
# Packager: Victor Martinez, pitillo at ono dot com
# Depends on: glib libidl
name=orbit2
version=2.14.19
release=1
source=(ftp://ftp.gnome.org/pub/gnome/sources/ORBit2/${version%.*}/ORBit2-$version.tar.bz2
git-fixes.patch)
build() {
export MAKEFLAGS="$MAKEFLAGS -j1"
cd ORBit2-$version
patch -p1 < $SRC/git-fixes.patch
./configure --prefix=/usr \
--enable-debug=no \
--disable-gtk-doc \
--disable-static
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|