diff --git a/community/neko/PKGBUILD b/community/neko/PKGBUILD index bf33b9b99..e2e220817 100644 --- a/community/neko/PKGBUILD +++ b/community/neko/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: Alexander F Rødseth +# Maintainer: Alexander F. Rødseth # Contributor: Daichi Shinozaki # Contributor: Dwight Schauer # Contributor: Stefan Husmann @@ -12,27 +12,26 @@ pkgname=neko pkgver=2.2.0 -pkgrel=5 +pkgrel=6 pkgdesc='High-level and dynamically typed programming language' -url='http://nekovm.org/' # no https -license=('LGPL') -arch=('x86_64') -depends=('gc' 'gtk2' 'mariadb-libs' 'mbedtls' 'sqlite') -makedepends=('apache' 'apr' 'cmake' 'git' 'mbedtls' 'ninja') +url='https://nekovm.org/' +license=(LGPL) +arch=(x86_64) +depends=(gc gtk2 mariadb-libs mbedtls sqlite) +makedepends=(apache apr cmake git mbedtls ninja) optdepends=('apache: for extending Apache with mod_neko') -options=('!strip') +options=(!strip) source=("git+https://github.com/HaxeFoundation/neko#tag=v${pkgver//./-}") sha256sums=('SKIP') prepare() { - sed -i '/xlocale.h/d' "$pkgname/libs/std/sys.c" + sed -i '/xlocale.h/d' $pkgname/libs/std/sys.c if [[ $CARCH != "aarch64" ]]; then sed -i '/mincoming-stack-boundary/d' $pkgname/CMakeLists.txt; fi } build() { mkdir -p build cd build - cmake ../$pkgname \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \