From 9ccdb70ea2b02aabb1dc27fd618fd1438fbd7ae2 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Mon, 2 Apr 2018 23:39:28 +0200 Subject: community/shards: move from testing --- community/shards/APKBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 community/shards/APKBUILD (limited to 'community/shards/APKBUILD') diff --git a/community/shards/APKBUILD b/community/shards/APKBUILD new file mode 100644 index 0000000000..5cc2c15583 --- /dev/null +++ b/community/shards/APKBUILD @@ -0,0 +1,49 @@ +# Contributor: Jakub Jirutka +# Maintainer: Jakub Jirutka +pkgname=shards +pkgver=0.7.2 +pkgrel=0 +_minitestver=0.3.6 +pkgdesc="Dependency manager for the Crystal language" +url="https://github.com/crystal-lang/shards" +arch="x86_64 aarch64" # limited by crystal aport +license="Apache-2.0" +depends="crystal git" +makedepends="yaml-dev" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/crystal-lang/$pkgname/archive/v$pkgver.tar.gz + minitest.cr-$_minitestver.tar.gz::https://github.com/ysbaddaden/minitest.cr/archive/v$_minitestver.tar.gz + use-git-bare-instead-of-mirror.patch + makefile-install.patch + " +builddir="$srcdir/$pkgname-$pkgver" + +export CRYSTAL_CACHE_DIR="$srcdir/.cache" + +prepare() { + default_prepare + cd "$builddir" + + mkdir -p lib + ln -s ../../minitest.cr-$_minitestver lib/minitest +} + +build() { + cd "$builddir" + make release CRFLAGS="" +} + +check() { + cd "$builddir" + make test_integration +} + +package() { + cd "$builddir" + make install DESTDIR="$pkgdir" PREFIX=/usr +} + +sha512sums="a99648ae292095278578e47971b556a0da90743db62689a76aae9eab986ad2185ad7adc13c4340f12fce835c5383d8aac93e35258d01fa658e521314eafaf942 shards-0.7.2.tar.gz +4f802475c6b1be0d1c8844fed1aeba09b8b2b893f413e25115c1687d35348357e9c0076169e38721bedc3cb31ac2463a7c1b243841554f3eca470608a62438a5 minitest.cr-0.3.6.tar.gz +ab640ab81273042b303abcd23b459f45dfdb8a725bff41043118750d03e6ba0c6bb86a5507f90bb74bf83cb14288dd35ece83b12c63b300f01bf6110e67099cc use-git-bare-instead-of-mirror.patch +6d5ff4cd2cdf41a4805f17459c614ddc6fbc98df49304067c927e27aaa6c43460409789c7871cfbead27a6d13d3d9b92b80b2aec9a76eefb9b11cf9feb17045b makefile-install.patch" -- cgit v1.2.3