[arch-commits] Commit in recode/repos (testing-x86_64 testing-x86_64/PKGBUILD)
Christian Hesse
eworm at archlinux.org
Sun Sep 1 19:37:30 UTC 2019
Date: Sunday, September 1, 2019 @ 19:37:29
Author: eworm
Revision: 361467
archrelease: copy trunk to testing-x86_64
Added:
recode/repos/testing-x86_64/
recode/repos/testing-x86_64/PKGBUILD
(from rev 361466, recode/trunk/PKGBUILD)
----------+
PKGBUILD | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
Copied: recode/repos/testing-x86_64/PKGBUILD (from rev 361466, recode/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-09-01 19:37:29 UTC (rev 361467)
@@ -0,0 +1,31 @@
+# Maintainer: Kevin Piche <kevin at archlinux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=recode
+pkgver=3.7.3
+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=('2ff6bddcab2d23d4e9ecc11afb08b39ca51f823abd952ae4f5ea096f8d1ce515')
+
+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