Date: Tuesday, November 1, 2022 @ 13:46:14
Author: foutrelis
Revision: 459867
archrelease: copy trunk to staging-x86_64
Added:
libssh/repos/staging-x86_64/
libssh/repos/staging-x86_64/PKGBUILD
(from rev 459866, libssh/trunk/PKGBUILD)
libssh/repos/staging-x86_64/keys/
----------+
PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
Copied: libssh/repos/staging-x86_64/PKGBUILD (from rev 459866,
libssh/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-11-01 13:46:14 UTC (rev 459867)
@@ -0,0 +1,49 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Tom Gundersen <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+# Contributor: ice-man <[email protected]>
+# Contributor: sergeantspoon <[email protected]>
+
+pkgbase=libssh
+pkgname=(libssh libssh-docs)
+pkgver=0.10.4
+pkgrel=2
+pkgdesc='Library for accessing ssh client services through C libraries'
+url='https://www.libssh.org/'
+license=(LGPL)
+arch=(x86_64)
+depends=(zlib openssl)
+makedepends=(cmake cmocka doxygen python openssh)
+provides=(libssh.so)
+source=("https://www.libssh.org/files/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.asc})
+sha256sums=('07392c54ab61476288d1c1f0a7c557b50211797ad00c34c3af2bbc4dbc4bd97d'
+ 'SKIP')
+validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D') # Andreas Schneider
<[email protected]>
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DWITH_GSSAPI=OFF \
+ -DUNIT_TESTING=ON
+ cmake --build build
+ cmake --build build --target docs
+}
+
+check() {
+ cmake --build build --target test
+}
+
+package_libssh() {
+ DESTDIR="$pkgdir" cmake --install build
+}
+
+package_libssh-docs() {
+ pkgdesc='Documentation for libssh'
+ depends=()
+ provides=()
+
+ mkdir -p "$pkgdir"/usr/share/doc/libssh
+ cp -r build/doc/html "$pkgdir"/usr/share/doc/libssh
+# cp -r build/doc/man "$pkgdir"/usr/share
+# rm "$pkgdir"/usr/share/man/man3/{bug,deprecated}.*
+}