[arch-commits] Commit in cppcodec/repos (extra-any extra-any/PKGBUILD)

Levente Polyak anthraxx at archlinux.org
Tue Nov 6 00:13:16 UTC 2018


    Date: Tuesday, November 6, 2018 @ 00:13:15
  Author: anthraxx
Revision: 337908

archrelease: copy trunk to extra-any

Added:
  cppcodec/repos/extra-any/
  cppcodec/repos/extra-any/PKGBUILD
    (from rev 337907, cppcodec/trunk/PKGBUILD)

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

Copied: cppcodec/repos/extra-any/PKGBUILD (from rev 337907, cppcodec/trunk/PKGBUILD)
===================================================================
--- extra-any/PKGBUILD	                        (rev 0)
+++ extra-any/PKGBUILD	2018-11-06 00:13:15 UTC (rev 337908)
@@ -0,0 +1,48 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+
+pkgname=cppcodec
+_gitcommit=302dc28f8fd5c8bf2ea8d7212aed3be884d5d166
+pkgver=0.2
+pkgrel=1
+pkgdesc='Header-only C++11 library to encode/decode base64, base64url, base32, base32hex and hex'
+url='https://github.com/tplgy/cppcodec'
+arch=('any')
+license=('MIT')
+makedepends=('git' 'cmake' 'catch2')
+source=("${pkgname}::git+https://github.com/tplgy/cppcodec#commit=${_gitcommit}?signed")
+sha512sums=('SKIP')
+validpgpkeys=('5DE3E0509C47EA3CF04A42D34AEE18F83AFDEB23') # GitHub (web-flow commit signing) <noreply at github.com>
+
+pkgver() {
+  cd ${pkgname}
+  git describe --always --tags | sed 's/^v//;s/-/+/g'
+}
+
+
+prepare() {
+  cd ${pkgname}
+  mkdir -p build
+}
+
+build() {
+  cd ${pkgname}/build
+  cmake .. \
+        -DCMAKE_BUILD_TYPE=Release \
+        -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}/build
+  make test
+}
+
+package() {
+  cd ${pkgname}
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 example/* -t "${pkgdir}/usr/share/doc/${pkgname}/example"
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list