diff options
Diffstat (limited to 'geoclue/Pkgfile')
-rw-r--r-- | geoclue/Pkgfile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/geoclue/Pkgfile b/geoclue/Pkgfile new file mode 100644 index 0000000..8228018 --- /dev/null +++ b/geoclue/Pkgfile @@ -0,0 +1,30 @@ +# Description: Service de geoinformation modulaire. +# URL: http://geoclue.freedesktop.org +# Maintainer: NuTyX GNOME team +# Packager: piernov <piernov@piernov.org> +# Depends on: gconf, gtk, gypsy, libgnome-keyring, sqlite3, libproxy, libsoup +# Run on: gconf, gtk, gypsy, libgnome-keyring, sqlite3, libproxy, libsoup + +name=geoclue +version=0.12 +release=1 +source=(http://cgit.freedesktop.org/$name/snapshot/$name-$version.tar.bz2 + geoclue-NMCrash.patch + geoclue-nm08.patch) + +build() { + cd $name-$version + patch -p1 < ../geoclue-NMCrash.patch + patch -p1 < ../geoclue-nm08.patch + ./autogen.sh + sed "s/-Werror//g" -i configure + ./configure --prefix=/usr \ + --disable-gtk-doc \ + --enable-gtk=yes \ + --enable-networkmanager=yes \ + --enable-gypsy=yes \ + --enable-gpsd=yes \ + --enable-skyhook=yes + make + make DESTDIR=$PKG install +} |