# Maintainer: Deposite Pirate # # Based on PKGBUILD by Roshless # # Upstream: https://git.metalpunks.info/arch-ports _pkgname=lagrange pkgname=$_pkgname-nosse41 pkgrel=1 pkgver=1.15.8 pkgdesc='Beautiful Gemini Client (compiled without SSE)' url='https://git.skyjake.fi/skyjake/lagrange' arch=('x86_64' 'i686' 'aarch64' 'armv7h') license=('BSD') install="$_pkgname.install" source=("https://git.skyjake.fi/skyjake/$_pkgname/releases/download/v$pkgver/$_pkgname-$pkgver.tar.gz") depends=( 'fribidi' 'harfbuzz' 'hicolor-icon-theme' 'libunistring' 'openssl' 'pcre' 'sdl2' 'zlib' 'mpg123' ) optdepends=( 'libwebp: Webp decode support' ) makedepends=( 'cmake' 'zip' ) conflicts=("$_pkgname") provides=("$_pkgname") sha256sums=('7511afc24261439d65c51452e38d2c3ca95d97c3a8f42821ffd612274469416b') build() { cmake -B build -S "${_pkgname}-${pkgver}" \ -DCMAKE_BUILD_TYPE='Release' \ -DCMAKE_INSTALL_PREFIX='/usr' \ -DENABLE_KERNING=OFF \ -DTFDN_ENABLE_WARN_ERROR=OFF \ -DTFDN_ENABLE_SSE41=OFF \ -Wno-dev make -C build } package() { install -Dm644 "${_pkgname}-${pkgver}/LICENSE.md" \ "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md" cd build make DESTDIR="${pkgdir}" install }