From 05ae6a2e3de8a820735181b6ec35d4b2286728d2 Mon Sep 17 00:00:00 2001 From: Inzamam Date: Tue, 12 Mar 2019 20:08:34 +0530 Subject: Add HACKING.md file HACKING.md file contains the build instructions to build and run Geoclue Fixes #104 --- HACKING.md | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 HACKING.md (limited to 'HACKING.md') diff --git a/HACKING.md b/HACKING.md new file mode 100644 index 0000000..3ac04dd --- /dev/null +++ b/HACKING.md @@ -0,0 +1,80 @@ +# Building Geoclue + +- The following are the dependencies needed to build Geoclue2. But If Geoclue2 + is already included in your distro/OS, you should be able to use the + package manager's command to install all build depedndancies. + + * gio-2.0 + * gio-unix-2.0 + * gobject-introspection-1.0 + * glib-2.0 (>= 2.34.0) + * json-glib-1.0 + * libsoup2.4 (>= 2.42) + * pkg-config + + Fedora: + + ```shell + sudo dnf builddep geoclue2 + ``` + + Debian and Ubuntu: + + ```shell + sudo apt build-dep geoclue-2.0 + ``` + +- For a full-fledged build, you also want ModemManager (mm-glib) and + avahi-client and avahi-glib. You want the latter two if you want to use the + [geoclue-share app](https://wiki.gnome.org/Apps/GeoclueShare). + + Fedora: + + ```shell + sudo dnf install ModemManager + sudo dnf install avahi-client + sudo dnf install avahi-glib + ``` + + Debian and Ubuntu: + + ```shell + sudo apt install modemmanager + sudo apt install libavahi-client3 + sudo apt install libavahi-glib1 + sudo apt install libnotify-dev + ``` + +- [Install meson](https://mesonbuild.com/Getting-meson.html). + +- Ensure you have a geoclue user on your system. If it already exists, you may + need to modify ``/etc/passwd`` file to make it a login user account. + +- Build and install geoclue. + + ```shell + meson --prefix=/usr --sysconfdir /etc -Ddbus-srv-user=geoclue build + # you may need to pass --libdir=/usr/lib64 on some systems (eg. Fedora) + ninja -C build + sudo ninja -C build install + ``` + +- Then you can run it as: + + ```shell + sudo su geoclue + G_MESSAGES_DEBUG=Geoclue /usr/libexec/geoclue + ``` + + If you get the following error, make sure ``geoclue`` process is not already + running: + + > Failed to acquire name 'org.freedesktop.GeoClue2' on system bus or lost it + +- Test + + ```shell + /usr/libexec/geoclue-2.0/demos/where-am-i + ``` + + It will give your current location. -- cgit v1.2.1