diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-09-20 17:08:32 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-09-29 09:27:25 +0200 |
commit | 0ac2945504b4df71d0ac6777b2c956cd4921ad08 (patch) | |
tree | 301eb3b41ae6f4e78a8b5611040ba8d9c13af6dd /arch/tde-core/tde-tqca-tls | |
parent | 318e997cf4d25c5d2e7b4261a6017b653c1fa93c (diff) | |
download | tde-packaging-0ac2945504b4df71d0ac6777b2c956cd4921ad08.tar.gz tde-packaging-0ac2945504b4df71d0ac6777b2c956cd4921ad08.zip |
ArchLinux: Take a newer state of pkgbuilds from Michael Manley
Clean old long-term not maintained pkgbuilds.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 018f946ee70600993c60a74046f417ca05bdb41b)
Diffstat (limited to 'arch/tde-core/tde-tqca-tls')
-rw-r--r-- | arch/tde-core/tde-tqca-tls/PKGBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/arch/tde-core/tde-tqca-tls/PKGBUILD b/arch/tde-core/tde-tqca-tls/PKGBUILD new file mode 100644 index 000000000..db87b201d --- /dev/null +++ b/arch/tde-core/tde-tqca-tls/PKGBUILD @@ -0,0 +1,38 @@ +# Maintainer: Michael Manley <mmanley@nasutek.com> +# Contributor: Pawel 'l0ner' Soltys <pwslts@gmail.com> +# Contributor: Calvin Morrison <mutantturkey@gmail.com> +# Contributor: David C. Rankin <drankinatty at gmail dot com> + +pkgname=tde-tqca-tls +pkgver=14.0.5 +pkgrel=1 +pkgdesc="Trinity SSL/TLS plugin for TQt Cryptographic Architecture (TQCA)" +arch=('i686' 'x86_64') +url='http://scm.trinitydesktop.org/scm/git/tqca-tls' +license=('GPL') +groups=('tde-core') +depends=('tde-tqtinterface' 'openssl-1.0') +makedepends=('pkgconfig') +provides=('tqca-tls') +conflicts=('trinity-tqca-tls') +replaces=('trinity-tqca-tls') +options=('staticlibs' 'libtool' '!strip') +source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/dependencies/tqca-tls-R${pkgver}.tar.bz2") +md5sums=('21dd2d8680bdfccbbb68616682d5e898') + +build() { + cd ${srcdir}/dependencies/${pkgname#*-} + + msg "Starting configure..." + ./configure --qtdir=${QTDIR} --with-openssl-inc=/usr/include/openssl-1.0 \ + --with-openssl-lib=/usr/lib/openssl-1.0 + + msg "Building - $pkgname..." + make || return 1 +} + +package() { + msg "Packaging - $pkgname" + cd ${srcdir}/dependencies/${pkgname#*-} + make INSTALL_ROOT="${pkgdir}" install +} |