PKGBUILDs/community/neko/PKGBUILD

48 lines
1.4 KiB
Bash
Raw Normal View History

2019-02-21 13:36:59 +00:00
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
2016-05-21 15:56:21 +00:00
# Contributor: Daichi Shinozaki <dsdseg@gmail.com>
# Contributor: Dwight Schauer <dschauer@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
# Contributor: Michael 'manveru' Fellinger <m.fellinger@gmail.com>
# Contributor: Caleb McCombs <erdrick016+aur@gmail.com>
# Contributor: Christian Hesse <arch@eworm.de>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - remove unsupported gcc flag on !aarch64
pkgname=neko
2018-01-11 13:45:47 +00:00
pkgver=2.2.0
2019-02-21 13:36:59 +00:00
pkgrel=6
2017-10-30 18:11:24 +00:00
pkgdesc='High-level and dynamically typed programming language'
2019-02-21 13:36:59 +00:00
url='https://nekovm.org/'
license=(LGPL)
arch=(x86_64)
depends=(gc gtk2 mariadb-libs mbedtls sqlite)
makedepends=(apache apr cmake git mbedtls ninja)
2017-10-30 18:11:24 +00:00
optdepends=('apache: for extending Apache with mod_neko')
2019-02-21 13:36:59 +00:00
options=(!strip)
2017-10-30 18:11:24 +00:00
source=("git+https://github.com/HaxeFoundation/neko#tag=v${pkgver//./-}")
2016-05-21 15:56:21 +00:00
sha256sums=('SKIP')
prepare() {
2019-02-21 13:36:59 +00:00
sed -i '/xlocale.h/d' $pkgname/libs/std/sys.c
2016-05-21 15:56:21 +00:00
if [[ $CARCH != "aarch64" ]]; then sed -i '/mincoming-stack-boundary/d' $pkgname/CMakeLists.txt; fi
}
build() {
mkdir -p build
cd build
2017-10-30 18:11:24 +00:00
cmake ../$pkgname \
2016-05-21 15:56:21 +00:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-GNinja
ninja
}
package() {
DESTDIR="$pkgdir" ninja -C build install
}
# getver: nekovm.org/download
2017-10-30 18:11:24 +00:00
# vim: ts=2 sw=2 et: