From 606bc59d0f8f67815c6a717843835477d44db6b3 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 1 May 2022 21:21:05 +0000 Subject: added ungoogled chromium --- skip/libssh.xibuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 skip/libssh.xibuild (limited to 'skip/libssh.xibuild') diff --git a/skip/libssh.xibuild b/skip/libssh.xibuild new file mode 100644 index 0000000..0c35d14 --- /dev/null +++ b/skip/libssh.xibuild @@ -0,0 +1,25 @@ +#!/bin/sh + +NAME="libssh" +DESC="Library for accessing ssh client services through C libraries" + +MAKEDEPS="cmake argp-standalone" +DEPS="openssl " + +PKG_VER=0.9.6 +SOURCE="https://www.libssh.org/files/${PKG_VER%.*}/libssh-$PKG_VER.tar.xz" + +build () { + cmake -B build \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ + -DBUILD_SHARED_LIBS=True \ + -DBUILD_STATIC_LIBS=OFF + -DWITH_GSSAPI=OFF + -DUNIT_TESTING=OFF + cmake --build build +} + +package () { + DESTDIR="$PKG_DEST" cmake --install build +} -- cgit v1.2.1