diff --git a/x86_64/extra/PKGBUILD b/x86_64/extra/PKGBUILD index 5c1d13e..ae6288b 100644 --- a/x86_64/extra/PKGBUILD +++ b/x86_64/extra/PKGBUILD @@ -1,19 +1,21 @@ -# Maintainer: Ronald van Haren +# Maintainer: Nathan Owens # Contributor: Jan de Groot # Contributor: Eric Johnson pkgname=libidn -pkgver=1.38 +pkgver=1.40 pkgrel=1 pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications" url="https://www.gnu.org/software/libidn/" arch=('x86_64') license=('GPL3' 'LGPL') depends=('glibc') +options=('debug') source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}) validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C' # Simon Josefsson + 'B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE' # Simon Josefsson '1CB27DBC98614B2D5841646D08302DB6A2670428') # Tim Rühsen -sha256sums=('de00b840f757cd3bb14dd9a20d5936473235ddcba06d4bc2da804654b8bbf0f6' +sha256sums=('527f673b8043d7189c056dd478b07af82492ecf118aa3e0ef0dc98c11af79991' 'SKIP') build() { diff --git a/x86_64/testing/PKGBUILD b/x86_64/testing/PKGBUILD deleted file mode 100644 index ae6288b..0000000 --- a/x86_64/testing/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: Nathan Owens -# Contributor: Jan de Groot -# Contributor: Eric Johnson - -pkgname=libidn -pkgver=1.40 -pkgrel=1 -pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications" -url="https://www.gnu.org/software/libidn/" -arch=('x86_64') -license=('GPL3' 'LGPL') -depends=('glibc') -options=('debug') -source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}) -validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C' # Simon Josefsson - 'B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE' # Simon Josefsson - '1CB27DBC98614B2D5841646D08302DB6A2670428') # Tim Rühsen -sha256sums=('527f673b8043d7189c056dd478b07af82492ecf118aa3e0ef0dc98c11af79991' - 'SKIP') - -build() { - cd "${pkgname}-${pkgver}" - - ./configure \ - --prefix=/usr - make -} - -check() { - cd "${pkgname}-${pkgver}" - - make check -} - -package() { - cd "${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}" install - # doc html installation - gtk-doc isn't supported anymore - FS#55151 - mkdir -p "${pkgdir}/usr/share/gtk-doc/html/${pkgname}" - cp -r -v doc/reference/html/* "${pkgdir}/usr/share/gtk-doc/html/${pkgname}" -}