Initial commit

patch-6ee5522513d8ef3f2bb53d8fc09b93876f919a8a
mujx 2017-05-09 22:18:47 +03:00
commit 34aa3cf04a
2 changed files with 67 additions and 0 deletions

18
.SRCINFO 100644
View File

@ -0,0 +1,18 @@
pkgbase = nheko-git
pkgdesc = Desktop client for the Matrix protocol
pkgver = 0.1.0.e78e43c86a39
pkgrel = 1
url = https://github.com/mujx/nheko
arch = i686
arch = x86_64
license = GPL3
makedepends = git
makedepends = cmake
makedepends = gcc
makedepends = fontconfig
depends = qt5-base
source = nheko-git::git+https://github.com/mujx/nheko.git
md5sums = SKIP
pkgname = nheko-git

49
PKGBUILD 100644
View File

@ -0,0 +1,49 @@
# Maintainer: Konstantinos Sideris <siderisk at auth dot gr>
pkgname=nheko-git
pkgver=0.1.0.e78e43c86a39
pkgrel=1
pkgdesc="Desktop client for the Matrix protocol"
arch=('i686' 'x86_64')
url="https://github.com/mujx/nheko"
license=('GPL3')
depends=('qt5-base')
makedepends=('git' 'cmake' 'gcc' 'fontconfig')
source=($pkgname::git+https://github.com/mujx/nheko.git)
md5sums=('SKIP')
pkgver() {
cd "$pkgname"
printf "0.1.0.%s" "$(git rev-parse --short HEAD)"
}
build() {
cd "$pkgname"
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
make -C build -j2
}
package() {
# Creating needed directories
install -dm755 "$pkgdir/usr/bin"
install -dm755 "$pkgdir/usr/share/pixmaps/"
install -dm755 "$pkgdir/usr/share/applications/"
# 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"
# 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
}