[arch-commits] Commit in libidn/repos (3 files)
Christian Hesse
eworm at gemini.archlinux.org
Wed Jun 22 06:41:39 UTC 2022
Date: Wednesday, June 22, 2022 @ 06:41:39
Author: eworm
Revision: 449289
archrelease: copy trunk to testing-x86_64
Added:
libidn/repos/testing-x86_64/
libidn/repos/testing-x86_64/PKGBUILD
(from rev 449288, libidn/trunk/PKGBUILD)
libidn/repos/testing-x86_64/keys/
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: libidn/repos/testing-x86_64/PKGBUILD (from rev 449288, libidn/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-06-22 06:41:39 UTC (rev 449289)
@@ -0,0 +1,42 @@
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Jan de Groot <jgc.archlinux.org>
+# Contributor: Eric Johnson <eric.archlinux.org>
+
+pkgname=libidn
+pkgver=1.39
+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 <simon at josefsson.org>
+ 'B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE' # Simon Josefsson <simon at josefsson.org>
+ '1CB27DBC98614B2D5841646D08302DB6A2670428') # Tim Rühsen <tim.ruehsen at gmx.de>
+sha256sums=('2c8f083b3fc67438e47479d6555fe38d404f41da4c0464add3b46fbf58907312'
+ '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}"
+}
More information about the arch-commits
mailing list