blob: 8b68093274fc1bd2371040bc3edde499396a2529 (
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
|
# Description: Librairie gnome libgnome
# URL: http://www.gnome.org/
# Maintainer: NuTyX GNOME team
# Packager: b at juglas dot name
# Depends on: libcanberra, esound, alsa-lib, libbonobo, gnome-vfs
# Run on: libcanberra,esound,alsa-lib,libbonobo,gnome-vfs
name=libgnome
version=2.32.1
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--mandir=/usr/share/man \
--disable-gtk-doc
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|