blob: 1638091b947c7c0181b6797a09fdc633381ef87b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Code for an ORB written in C will spontaneously evolve here
# URL: http://www.labs.redhat.com/orbit/
# Maintainer: Matt Housh, jaeger at morpheus dot net
# Depends on: glib, libidl
# Group: gnome/platform
name=orbit2
version=2.14.17
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/ORBit2/2.14/ORBit2-$version.tar.bz2)
build() {
cd ORBit2-$version
./configure --prefix=$GNOME_PREFIX \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
}
|