aboutsummaryrefslogtreecommitdiffstats
path: root/testing/pony-stable
diff options
context:
space:
mode:
authorRasmus Thomsen <oss@cogitri.dev>2019-06-07 23:06:49 +0200
committerLeo <thinkabit.ukim@gmail.com>2019-07-05 11:01:13 -0300
commitf50bda9b587e967aecbe9fffa258cc7fda04a73d (patch)
tree41ce94f65cd329a6082a257b81d0983d7ebfaf0c /testing/pony-stable
parent69851bdae1177246337f51a35734e93f1fd7e3d3 (diff)
downloadaports-f50bda9b587e967aecbe9fffa258cc7fda04a73d.tar.bz2
aports-f50bda9b587e967aecbe9fffa258cc7fda04a73d.tar.xz
testing/pony-stable: upgrade to 0.2.0
Diffstat (limited to 'testing/pony-stable')
-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"