Date: Sunday, August 19, 2018 @ 03:05:36
Author: kkeen
Revision: 372740
archrelease: copy trunk to community-staging-x86_64
Added:
neko/repos/community-staging-x86_64/
neko/repos/community-staging-x86_64/PKGBUILD
(from rev 372739, neko/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: neko/repos/community-staging-x86_64/PKGBUILD (from rev 372739,
neko/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2018-08-19 03:05:36 UTC (rev 372740)
@@ -0,0 +1,44 @@
+# Maintainer: Alexander F Rødseth <[email protected]>
+# Contributor: Daichi Shinozaki <[email protected]>
+# Contributor: Dwight Schauer <[email protected]>
+# Contributor: Stefan Husmann <[email protected]>
+# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
+# Contributor: Michael 'manveru' Fellinger <[email protected]>
+# Contributor: Caleb McCombs <[email protected]>
+# Contributor: Christian Hesse <[email protected]>
+
+pkgname=neko
+pkgver=2.2.0
+pkgrel=3
+pkgdesc='High-level and dynamically typed programming language'
+url='http://nekovm.org/' # no https
+license=('LGPL')
+arch=('x86_64')
+depends=('gc' 'gtk2' 'libmariadbclient' 'mbedtls' 'sqlite')
+makedepends=('apache' 'apr' 'cmake' 'git' 'mbedtls' 'ninja')
+optdepends=('apache: for extending Apache with mod_neko')
+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"
+}
+
+build() {
+ mkdir -p build
+ cd build
+
+ cmake ../$pkgname \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DRUN_LDCONFIG=OFF \
+ -GNinja
+ ninja
+}
+
+package() {
+ DESTDIR="$pkgdir" ninja -C build install
+}
+
+# getver: nekovm.org/download
+# vim: ts=2 sw=2 et: