aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/pony-stable/APKBUILD21
1 files changed, 11 insertions, 10 deletions
diff --git a/testing/pony-stable/APKBUILD b/testing/pony-stable/APKBUILD
index 24c20a60a0..7a85c35e74 100644
--- a/testing/pony-stable/APKBUILD
+++ b/testing/pony-stable/APKBUILD
@@ -1,25 +1,26 @@
+# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
-# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
+# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=pony-stable
-pkgver=0.1.1
+pkgver=0.2.0
pkgrel=0
pkgdesc="A simple dependency manager for the Pony language"
url="https://github.com/ponylang/pony-stable"
-arch="x86_64" # limited by ponyc
+arch="x86_64"
license="BSD-2-Clause"
-options="!check" # no tests provided
-makedepends="ponyc"
+makedepends="ponyc libexecinfo-dev pcre2-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/ponylang/$pkgname/archive/$pkgver.tar.gz"
-builddir="$srcdir/$pkgname-$pkgver"
build() {
- cd "$builddir"
make
}
+check() {
+ make test
+}
+
package() {
- cd "$builddir"
- install -m 755 -D build/release/stable "$pkgdir"/usr/bin/stable
+ DESTDIR="$pkgdir" make prefix=/usr install
}
-sha512sums="7d1638356c846ef1367774d2decf80192fefce73d4bfdd8202fbaf2a87875362dbcb65a5fe254dda239edd1f89c856634380d9c19a640d9b6eb7e19d063d102b pony-stable-0.1.1.tar.gz"
+sha512sums="72e7cfaab90f54e18adcb4e6d2d2a752ddab9b10cfa017d0e751183165e5de94b547cc5bcae7ff2268fe594e8901cb42ce50a86b9fed706ea0441efd3080f72b pony-stable-0.2.0.tar.gz"