nheko-git/PKGBUILD

69 lines
2.1 KiB
Bash
Raw Normal View History

2017-05-09 21:18:47 +02:00
# Maintainer: Konstantinos Sideris <siderisk at auth dot gr>
2019-05-12 02:28:49 +02:00
# Maintainer: Joseph Donofry <joe at joedonofry dot com>
2017-05-09 21:18:47 +02:00
pkgname=nheko-git
2019-06-18 20:10:41 +02:00
pkgver=0.7.0.r1050.cfd6c57
2017-05-09 21:18:47 +02:00
pkgrel=1
pkgdesc="Desktop client for the Matrix protocol"
2017-08-10 22:36:34 +02:00
arch=("i686" "x86_64")
2017-05-09 21:18:47 +02:00
url="https://github.com/Nheko-Reborn/nheko"
2017-08-10 22:36:34 +02:00
license=("GPL3")
2017-05-09 21:18:47 +02:00
2018-09-18 21:35:05 +02:00
depends=("qt5-base" "lmdb" "qt5-multimedia" "qt5-svg" "boost" "libsodium" "openssl" "cmark")
2019-05-12 22:57:55 +02:00
makedepends=("git" "cmake" "gcc" "fontconfig" "qt5-tools")
2017-05-09 21:18:47 +02:00
2018-04-12 22:44:36 +02:00
provides=("nheko")
conflicts=("nheko")
2019-06-18 20:10:41 +02:00
source=($pkgname::git://github.com/Nheko-Reborn/nheko.git#branch=0.7.0-dev)
2017-12-04 20:43:10 +01:00
md5sums=("SKIP")
2017-08-10 22:36:34 +02:00
prepare() {
2017-08-10 22:44:36 +02:00
cd "$pkgname"
2017-08-10 22:36:34 +02:00
}
2017-05-09 21:18:47 +02:00
pkgver() {
cd "$pkgname"
2019-06-18 20:10:41 +02:00
printf "0.7.0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
2017-05-09 21:18:47 +02:00
}
build() {
cd "$pkgname"
2018-07-16 21:15:37 +02:00
rm -f cmake/FindOlm.cmake
2019-05-13 05:36:56 +02:00
# build with more cores than the default
export CMAKE_BUILD_PARALLEL_LEVEL=$(cat /proc/cpuinfo | awk '/^processor/{print $3}' | wc -l)
cmake -Hdeps -B.deps -DUSE_BUNDLED_BOOST=OFF -DUSE_BUNDLED_CMARK=OFF -DUSE_BUNDLED_JSON=ON -DMTX_STATIC=ON
2018-06-17 19:09:01 +02:00
cmake --build .deps
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release \
-DLMDBXX_INCLUDE_DIR=.deps/usr/include \
2019-05-12 22:57:55 +02:00
-DTWEENY_INCLUDE_DIR=.deps/usr/include \
-DCMAKE_INSTALL_PREFIX=.deps/usr
2017-12-04 20:43:10 +01:00
cmake --build build
2017-05-09 21:18:47 +02:00
}
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
}