[arch-commits] Commit in tl-expected/repos (community-any community-any/PKGBUILD)

Sven-Hendrik Haase svenstaro at archlinux.org
Tue Feb 11 22:00:00 UTC 2020


    Date: Tuesday, February 11, 2020 @ 21:59:59
  Author: svenstaro
Revision: 568140

archrelease: copy trunk to community-any

Added:
  tl-expected/repos/community-any/
  tl-expected/repos/community-any/PKGBUILD
    (from rev 568139, tl-expected/trunk/PKGBUILD)

----------+
 PKGBUILD |   34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

Copied: tl-expected/repos/community-any/PKGBUILD (from rev 568139, tl-expected/trunk/PKGBUILD)
===================================================================
--- community-any/PKGBUILD	                        (rev 0)
+++ community-any/PKGBUILD	2020-02-11 21:59:59 UTC (rev 568140)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
+# Contributor: Viktor Schneider <info[at]vjs[dot]io>
+pkgname=tl-expected
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="C++11/14/17 std::expected with functional-style extensions"
+arch=('any')
+url="https://github.com/TartanLlama/expected"
+license=('custom:CC0')
+makedepends=('cmake>=3.14.0' 'catch2' 'git')
+source=("expected-v1.0.0.tar.gz::https://github.com/TartanLlama/expected/archive/v1.0.0.tar.gz")
+sha256sums=("8f5124085a124113e75e3890b4e923e3a4de5b26a973b891b3deb40e19c03cee")
+
+prepare() {
+    mkdir "expected-$pkgver/build"
+}
+
+build() {
+    cd "expected-$pkgver/build"
+    cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+    make
+}
+
+check() {
+    cd "expected-$pkgver/build"
+    ./tests
+}
+
+package() {
+    cd "expected-$pkgver/build"
+    make DESTDIR="$pkgdir/" install
+    cd ..
+    install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



More information about the arch-commits mailing list