blob: c2e04896e33bfbe56c59e9755a419cd36b9bef58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Librairie gnome libgnomeprint
# URL: http://www.gnome.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libbonobo, libgnomecups, libart_lgpl
name=libgnomeprint
version=2.18.6
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-gtk-doc
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
}
|