summary refs log tree commit diff
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-05-09 22:42:32 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-05-09 22:42:32 +0300
commit61fae5bb0d8e8a9f5370d74d19e912723cb63be1 (patch)
tree639fd21a0039a73eae9ad5d42093b12c93188398
parentAdd PKGBUILD (diff)
downloadnheko-61fae5bb0d8e8a9f5370d74d19e912723cb63be1.tar.xz
Update installation instructions
-rw-r--r--README.md16
-rw-r--r--dist/AUR/PKGBUILD24
2 files changed, 24 insertions, 16 deletions
diff --git a/README.md b/README.md
index 2f7fb761..65d56541 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,18 @@ Join the discussion on Matrix [#nheko:matrix.org](https://matrix.to/#/#nheko:mat
 Most of the features you'd expect from a chat application are missing right now
 but you can of course receive and send messages in the rooms that you are a member of.
 
-### Requirements
+### Installation
+
+#### Arch Linux
+```bash
+pacaur -S nheko-git
+```
+
+#### Windows
+
+You can find a NSIS installer [here](https://ci.appveyor.com/project/mujx/nheko/branch/master/artifacts).
+
+### Build Requirements
 
 - Qt5 (5.7 or greater). Qt 5.7 adds support for color font rendering with
   Freetype, which is essential to properly support emoji.
@@ -54,9 +65,6 @@ make -C build
 
 The `nheko` binary will be located in the `build` directory.
 
-[Here](https://ci.appveyor.com/project/mujx/nheko/branch/master/artifacts) you can
-find development builds for Windows.
-
 ### Contributing
 
 Any kind of contribution to the project is greatly appreciated. You are also
diff --git a/dist/AUR/PKGBUILD b/dist/AUR/PKGBUILD
index 1d525ad3..50572504 100644
--- a/dist/AUR/PKGBUILD
+++ b/dist/AUR/PKGBUILD
@@ -27,23 +27,23 @@ build() {
 }
 
 package() {
-	# Creating needed directories
-	install -dm755 "$pkgdir/usr/bin"
-	install -dm755 "$pkgdir/usr/share/pixmaps/"
-	install -dm755 "$pkgdir/usr/share/applications/"
+    # Creating needed directories
+    install -dm755 "$pkgdir/usr/bin"
+    install -dm755 "$pkgdir/usr/share/pixmaps/"
+    install -dm755 "$pkgdir/usr/share/applications/"
 
-	# Program
+    # Program
     install -Dm755 "$pkgname/build/nheko" "$pkgdir/usr/bin/nheko"
 
     # Desktop launcher
-	install -Dm644 "$srcdir/$pkgname/resources/nheko-256.png" "$pkgdir/usr/share/pixmaps/nheko.png"
-	install -Dm644 "$srcdir/$pkgname/resources/nheko.desktop" "$pkgdir/usr/share/applications/nheko.desktop"
+    install -Dm644 "$srcdir/$pkgname/resources/nheko-256.png" "$pkgdir/usr/share/pixmaps/nheko.png"
+    install -Dm644 "$srcdir/$pkgname/resources/nheko.desktop" "$pkgdir/usr/share/applications/nheko.desktop"
 
     # Icons
     local icon_size icon_dir
-	for icon_size in 16 32 48 64 128 256 512; do
-		icon_dir="$pkgdir/usr/share/icons/hicolor/${icon_size}x${icon_size}/apps"
-		install -d "$icon_dir"
-		install -m644 "$srcdir/$pkgname/resources/nheko-${icon_size}.png" "$icon_dir/nheko.png"
-	done
+    for icon_size in 16 32 48 64 128 256 512; do
+        icon_dir="$pkgdir/usr/share/icons/hicolor/${icon_size}x${icon_size}/apps"
+        install -d "$icon_dir"
+        install -m644 "$srcdir/$pkgname/resources/nheko-${icon_size}.png" "$icon_dir/nheko.png"
+    done
 }