blob: 779d9810d9bea5f15eab68599d7b42c6dcd30c76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Bibliothèque pour Yahoo! Place Finder
# URL: http://geoclue.freedesktop.org/
# Maintainer: NutyX Gnome team
# Packager: piernov <piernov@piernov.org>
# Depends on: json-glib, gio, libsoup, gobject-introspection
# Run on: json-glib, gio, libsoup
name=geocode-glib
version=0.99.0
release=1
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-scrollkeeper \
--enable-introspection=yes
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|