From 5465bfa2f4c89813584f4440b882f7f443a4685c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Klitzing?= Date: Tue, 13 Mar 2018 09:36:37 +0100 Subject: testing/unit: new aport --- testing/unit/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testing/unit/APKBUILD (limited to 'testing/unit/APKBUILD') diff --git a/testing/unit/APKBUILD b/testing/unit/APKBUILD new file mode 100644 index 0000000000..168bdb9c8c --- /dev/null +++ b/testing/unit/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: André Klitzing +# Maintainer: André Klitzing +pkgname=unit +pkgver=0.6 +pkgrel=0 +pkgdesc="NGINX Unit is a dynamic web application server" +url="https://unit.nginx.org/" +arch="all" +license="Apache2" +depends="" +makedepends="python3-dev" +source="https://unit.nginx.org/download/$pkgname-$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + ./configure --prefix=/usr + ./configure python --config=python3-config + make +} + +check() { + cd "$builddir" + ./test/run.py +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="5b667b1e7382df561574da25799c13ab3c1fc9f2ed975a61455589150d7936149816d3c7c1734abe38a1440a759ee225db3509f5696b4fae9fc90643a0b8ae79 unit-0.6.tar.gz" -- cgit v1.2.3