[arch-commits] Commit in sscg/repos (community-x86_64 community-x86_64/PKGBUILD)
Jelle van der Waa
jelle at gemini.archlinux.org
Tue Nov 9 13:09:52 UTC 2021
Date: Tuesday, November 9, 2021 @ 13:09:52
Author: jelle
Revision: 1039328
archrelease: copy trunk to community-x86_64
Added:
sscg/repos/community-x86_64/
sscg/repos/community-x86_64/PKGBUILD
(from rev 1039327, sscg/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: sscg/repos/community-x86_64/PKGBUILD (from rev 1039327, sscg/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2021-11-09 13:09:52 UTC (rev 1039328)
@@ -0,0 +1,36 @@
+# Maintainer: Jelle van der Waa <jelle at archlinux.org>
+
+pkgname=sscg
+pkgver=3.0.1
+pkgrel=1
+pkgdesc="Simple Signed Certificate Generator"
+url="https://github.com/sgallagher/sscg"
+license=('GPL')
+arch=(x86_64)
+depends=(openssl popt talloc ding-libs)
+makedepends=(git help2man meson)
+source=(git+https://github.com/sgallagher/sscg.git?signed#tag=${pkgname}-${pkgver})
+# https://github.com/sgallagher.gpg
+validpgpkeys=('850A9DD1DBF2ACCC6FC4949145DB85A568286D11')
+sha512sums=('SKIP')
+
+build() {
+ cd $pkgname
+ meson --prefix=/usr \
+ --buildtype plain \
+ --auto-features enabled \
+ -D b_lto=true \
+ -D b_pie=true \
+ build
+ ninja -C build
+}
+
+check() {
+ cd $pkgname
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ cd $pkgname
+ DESTDIR="${pkgdir}" meson install -C build
+}
More information about the arch-commits
mailing list