# Maintainer: Aqua-sama pkgname=smolbote-git pkgver=0.0.0 pkgrel=1 pkgdesc='Yet another Qt browser' url="https://neueland.iserlohn-fortress.net/smolbote" arch=('x86_64') license=('GPL3') depends=('qt5-base' 'qt5-webengine') makedepends=('git' 'qt5-tools' 'cmake' 'libconfig' 'pkg-config') source=("git+git://neueland.iserlohn-fortress.net/smolbote.git") sha512sums=('SKIP') prepare() { # any patches go here } pkgver() { cd smolbote echo "$(git describe --long --tags | tr - .)" } build() { cd "$pkgname-$pkgver" # Generate a makefile # Adjust the install prefix as necessary, default is /usr/local/bin cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local "$srcdir" # Use this if you want to link with libc++ instead # This requires clang, since gcc doesn't understand the concept of not using GPL software #cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DUseLibCpp=On "$srcdir" # build, with 4 threads make -j 4 } package() { cd "$pkgname-$pkgver" make install }