# Maintainer: Deposite Pirate # # Based on PKGBUILD by Roshless # # Upstream: https://git.metalpunks.info/arch-ports _pkgname=lagrange pkgname=$_pkgname-nosse41 pkgrel=1 pkgver=1.13.7 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' ) makedepends=( 'cmake' 'zip' ) conflicts=("$_pkgname") provides=("$_pkgname") sha256sums=('7fe70d06cfa80fcf7122f1a537a2205d844dd6e9efcc4d6dd712861faa3f2e14') 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 }