blob: c604b76f5253e0c97da99d2cf69cb54493a66fee (
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: Librairie gnome libgnome
# URL: http://www.gnome.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libbonobo, gnome-vfs, esound, alsa-lib
# Run on:
name=libgnome
version=2.30.0
release=5
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2\
nutyx-attapu.jpg)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
cp ../nutyx-attapu.jpg \
$PKG/usr/share/pixmaps/backgrounds/gnome/background-default.jpg
rm -r $PKG/usr/share/gtk-doc
}
|