diff options
author | Aki <please@ignore.pl> | 2024-01-19 23:04:52 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-01-19 23:04:52 +0100 |
commit | 1d3f3567916d4f44ad3914c287d4fda5cca46d2a (patch) | |
tree | fc2fa815fae1ebf04580bd0ad946b6cd682ae768 /wolfssh/PKGBUILD | |
parent | e4b96af6d1f32dc8a12233d2e47fc9dc10f8c57d (diff) | |
download | arch-ignore-1d3f3567916d4f44ad3914c287d4fda5cca46d2a.zip arch-ignore-1d3f3567916d4f44ad3914c287d4fda5cca46d2a.tar.gz arch-ignore-1d3f3567916d4f44ad3914c287d4fda5cca46d2a.tar.bz2 |
Removed wolfss{l,h} packages
Diffstat (limited to 'wolfssh/PKGBUILD')
-rw-r--r-- | wolfssh/PKGBUILD | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/wolfssh/PKGBUILD b/wolfssh/PKGBUILD deleted file mode 100644 index f63f379..0000000 --- a/wolfssh/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: Aki <please@ignore.pl> -pkgbase=wolfssh -pkgname=(${pkgbase} ${pkgbase}-examples) -pkgver=1.4.13 -pkgrel=5 -pkgdesc='Small, fast, portable SSH implementation, including support for SCP and SFTP' -license=('GPL 2.0') -arch=(x86_64 i686) -makedepends=(autoconf) -depends=(libtool wolfssl) -source=("https://github.com/wolfSSL/${pkgbase}/archive/refs/tags/v${pkgver}-stable.tar.gz") -sha256sums=('95de536d2390ca4a8a7f9be4b2faaaebb61dcedf2c6571107172d4a64347421c') - - -build() { - cd "${pkgbase}-${pkgver}-stable" - ./autogen.sh - ./configure --prefix=/usr --with-wolfssl=/usr --enable-certs --enable-scp --enable-sftp --enable-sshd \ - CPPFLAGS='-DWOLFSSH_NO_FPKI -DWOLFSSH_MAX_SFTP_RW=10485760' --enable-shared --disable-static - make -} - - -package_wolfssh() { - cd "${pkgbase}-${pkgver}-stable" - make DESTDIR="${pkgdir}" install -} - -package_wolfssh-examples() { - depends=(libtool wolfssh) - cd "${pkgbase}-${pkgver}-stable" - mkdir -p "${pkgdir}/usr/bin" - cp -r examples/client/{client,.libs} "${pkgdir}/usr/bin" -} |