[arch-commits] Commit in recode/repos (testing-x86_64 testing-x86_64/PKGBUILD)

Christian Hesse eworm at gemini.archlinux.org
Fri Jan 21 20:33:54 UTC 2022


    Date: Friday, January 21, 2022 @ 20:33:54
  Author: eworm
Revision: 434882

archrelease: copy trunk to testing-x86_64

Added:
  recode/repos/testing-x86_64/
  recode/repos/testing-x86_64/PKGBUILD
    (from rev 434881, recode/trunk/PKGBUILD)

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

Copied: recode/repos/testing-x86_64/PKGBUILD (from rev 434881, recode/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2022-01-21 20:33:54 UTC (rev 434882)
@@ -0,0 +1,31 @@
+# Maintainer: Kevin Piche <kevin at archlinux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=recode
+pkgver=3.7.10
+pkgrel=1
+pkgdesc="Converts files between various character sets and usages"
+arch=('x86_64')
+url='https://github.com/rrthomas/recode'
+license=('GPL3' 'LGPL3')
+depends=('glibc')
+makedepends=('python')
+source=("https://github.com/rrthomas/recode/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('4a4b00a6080f8ef77956a18040454785d35b66ab7d8105ffd971798aa4a8f186')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+    --prefix=/usr \
+    --mandir=/usr/share/man \
+    --infodir=/usr/share/info \
+    --without-included-gettext
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}



More information about the arch-commits mailing list