# Maintainer: Václav Kubernát pkgname=lith-git pkgver=1.2.3.r1.gb26c390 pkgrel=1 pkgdesc='A multiplatform WeeChat relay client' arch=('x86_64') url='https://github.com/LithApp/Lith' license=('GPL') depends=('qt5-base' 'qt5-declarative' 'qt5-websockets' 'qt5-multimedia' 'qt5-quickcontrols2') makedepends=('git') provides=("${pkgname%-git}") conflicts=("${pkgname%-git}") source=('git+https://github.com/lithapp/lith.git') md5sums=('SKIP') pkgver() { cd "$srcdir/${pkgname%-git}" git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } build() { cd "$srcdir/${pkgname%-git}" mkdir -p build cd build qmake .. make } package() { cd "$srcdir/${pkgname%-git}/build" # The executable has an uppercase L, I think it is sensible to change that to a lowercase l. install -D "Lith" "$pkgdir/usr/bin/lith" }