Date: Tuesday, March 14, 2023 @ 13:37:17
  Author: tpowa
Revision: 470811

archrelease: copy trunk to testing-x86_64

Added:
  gawk/repos/testing-x86_64/
  gawk/repos/testing-x86_64/PKGBUILD
    (from rev 470810, gawk/trunk/PKGBUILD)
  gawk/repos/testing-x86_64/keys/

----------+
 PKGBUILD |   32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

Copied: gawk/repos/testing-x86_64/PKGBUILD (from rev 470810, 
gawk/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD                             (rev 0)
+++ testing-x86_64/PKGBUILD     2023-03-14 13:37:17 UTC (rev 470811)
@@ -0,0 +1,32 @@
+# Maintainer:
+# Contributor: Tom Newsom <[email protected]>
+
+pkgname=gawk
+pkgver=5.2.1
+pkgrel=2
+pkgdesc="GNU version of awk"
+arch=('x86_64')
+url="https://www.gnu.org/software/gawk/";
+license=('GPL')
+depends=('sh' 'glibc' 'mpfr')
+provides=('awk')
+source=(https://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+validpgpkeys=('D1967C63788713177D861ED7DF597815937EC0D2') # Arnold Robbins
+sha256sums=('529e7c8c6acf21ff3a6183f4d763c632810908989c24675c77995d51ac37b79c'
+            'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib --sysconfdir=/etc 
--without-libsigsegv
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Reply via email to