From 010ebea42c3c8a0846d68e3f6b2ea8ccb263e681 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Thu, 21 Feb 2019 13:36:59 +0000 Subject: [PATCH] community/neko to 2.2.0-6 --- community/neko/PKGBUILD | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) 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 \