Skip to content

Commit

Permalink
aurget.sh - pull in lib32-libgnutls28-3.3.22-1 from AUR at commit b93…
Browse files Browse the repository at this point in the history
…8bcbec5aa3d2502d1998cf632830a28f253b8
  • Loading branch information
jantman committed Aug 9, 2016
1 parent 83a3c2f commit ebcfcc1
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
20 changes: 20 additions & 0 deletions lib32-libgnutls28/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by mksrcinfo v8
# Fri May 6 08:20:20 UTC 2016
pkgbase = lib32-libgnutls28
pkgdesc = A library which provides a secure layer over a reliable transport layer
pkgver = 3.3.22
pkgrel = 1
url = http://gnutls.org/
arch = x86_64
license = GPL3
license = LGPL2.1
makedepends = gcc-multilib
makedepends = lib32-libidn
depends = lib32-nettle
depends = lib32-p11-kit
depends = lib32-zlib
source = ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/gnutls-3.3.22.tar.xz
sha256sums = 0ffa233e022e851f3f5f7811ac9223081a0870d5a05a7cf35a9f22e173c7b009

pkgname = lib32-libgnutls28

3 changes: 3 additions & 0 deletions lib32-libgnutls28/MKPKG
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pkgname=('lib32-libgnutls28')

# vim: ts=2 sw=2 et:
49 changes: 49 additions & 0 deletions lib32-libgnutls28/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Dan Ziemba <zman0900@gmail.com>
# Contributor: Florian Pritz <bluewind@xinu.at>
# Contributor: Christoph Vigano <mail at cvigano dot de>
# Contributor: Biru Ionut <ionut@archlinux.ro>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi>

pkgname=lib32-libgnutls28
pkgver=3.3.22
pkgrel=1
pkgdesc='A library which provides a secure layer over a reliable transport layer'
arch=('x86_64')
url='http://gnutls.org/'
license=('GPL3' 'LGPL2.1')
depends=('lib32-nettle' 'lib32-p11-kit' 'lib32-zlib')
makedepends=('gcc-multilib' 'lib32-libidn')
source=("ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/gnutls-${pkgver}.tar.xz")
sha256sums=('0ffa233e022e851f3f5f7811ac9223081a0870d5a05a7cf35a9f22e173c7b009')

build() {
cd gnutls-${pkgver}

export CC='gcc -m32'
export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'

./configure \
--prefix='/usr' \
--libdir='/usr/lib32' \
--with-zlib \
--without-included-libtasn1 \
--enable-local-libopts \
--disable-cxx \
--disable-guile \
--disable-hardware-acceleration \
--disable-openssl-compatibility \
--disable-static \
--disable-valgrind-tests
make
}

package() {
cd gnutls-${pkgver}

make DESTDIR="${pkgdir}" install
rm -rf "${pkgdir}"/usr/{bin,include,lib32/{libgnutls.so,pkgconfig},share}
}

# vim: ts=2 sw=2 et:

0 comments on commit ebcfcc1

Please sign in to comment.