From b78a36fc6a8380fa46c1bb7181cf84077a20e3e8 Mon Sep 17 00:00:00 2001 From: Julian Sparber Date: Mon, 25 Sep 2017 12:39:55 +0200 Subject: [PATCH] [doc] add meson build instruction to README --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 59e633c..1be8f76 100644 --- a/README.md +++ b/README.md @@ -23,19 +23,21 @@ We are currently working on an MVP for a native GNOME app that only sends files, ## Build #### Archlinux ``` - pacman -S base-devel libsoup avahi gtk3 + pacman -S base-devel libsoup avahi gtk3 meson git clone https://github.com/frac-tion/teleport.git - cd teleport/src + cd teleport + ./configure make - ./teleport + ./_build/src/teleportapp ``` #### Ubuntu ``` - apt install pkg-config libsoup2.4-dev libavahi-client3 libgtk-3-dev + apt install pkg-config libsoup2.4-dev libavahi-client3 libgtk-3-dev meson git clone https://github.com/frac-tion/teleport.git - cd teleport/src + cd teleport + ./configure make - ./teleport + ./_build/src/teleportapp ```