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