blob: c3b68331ebf1929566dd519fa54e238e2a5bbefb (
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.3.2
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
}
|