blob: 147309ce54557eb9c47e4897ac47a6f26679c44f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Dictionnaire de GNOME.
# URL: http://live.gnome.org/GnomeUtils/Dictionary
# Maintainer: NuTyX GNOME team
# Packager: piernov <piernov@piernov.org>
# Depends on: gtk3, gnome-doc-utils
# Run on: gtk3
name=gnome-dictionary
version=3.4.0
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-schemas-compile \
--disable-rpath \
--disable-scrollkeeper
make
make DESTDIR=$PKG install
}
|