blob: 0453207a56cf5b6e6fc392345327168d1cf3b180 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: ORB CORBA leger et rapide.
# URL: http://www.gnome.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libidl
# Run on: libidl
name=orbit2
version=2.14.19
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/ORBit2/2.14/ORBit2-$version.tar.bz2)
build() {
cd ORBit2-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-static
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc/
}
|