[arch-commits] Commit in d-stdx-allocator/repos (2 files)
Evangelos Foutras
foutrelis at gemini.archlinux.org
Sun Oct 24 02:15:52 UTC 2021
Date: Sunday, October 24, 2021 @ 02:15:52
Author: foutrelis
Revision: 1033028
archrelease: copy trunk to community-testing-x86_64
Added:
d-stdx-allocator/repos/community-testing-x86_64/
d-stdx-allocator/repos/community-testing-x86_64/PKGBUILD
(from rev 1033027, d-stdx-allocator/trunk/PKGBUILD)
----------+
PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
Copied: d-stdx-allocator/repos/community-testing-x86_64/PKGBUILD (from rev 1033027, d-stdx-allocator/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2021-10-24 02:15:52 UTC (rev 1033028)
@@ -0,0 +1,45 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+
+pkgname=d-stdx-allocator
+_pkgname=stdx-allocator
+pkgver=3.0.2
+pkgrel=17
+pkgdesc='Extracted std.experimental.allocator'
+arch=('x86_64')
+url='https://github.com/dlang-community/stdx-allocator'
+license=('Boost')
+depends=('liblphobos' 'd-mir-core')
+makedepends=('meson' 'ldc')
+source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+ "add-dependency.patch::https://github.com/dlang-community/stdx-allocator/commit/676b4c782ba9c484864075508c27ef44399396f7.patch")
+sha512sums=('f4dc887225926cc4530314976e5e236c696a54c6e2ccdb48271b97b0c0a70882b70e92768c94c2932ccc9bd2282c3e953b27cf72088904458f7fc15234dca4be'
+ '13d52d3bb4d90e7b5fb3163f1761c20a57a59be1306ac665fea0eb9331864821d77e790f8ca6027b1936a6930085d2ccca7a1d49d4bd139a939e2c58f03bd47a')
+
+prepare() {
+ cd $_pkgname-$pkgver
+
+ patch -p1 < ../add-dependency.patch
+}
+
+build() {
+ mkdir $_pkgname-$pkgver/build
+ cd $_pkgname-$pkgver/build
+
+ export DC=ldc
+
+ arch-meson ..
+
+ ninja
+}
+
+check() {
+ cd $_pkgname-$pkgver/build
+
+ meson test
+}
+
+package() {
+ cd $_pkgname-$pkgver/build
+
+ DESTDIR="$pkgdir" ninja install
+}
More information about the arch-commits
mailing list