[arch-commits] Commit in qprint/repos (community-x86_64 community-x86_64/PKGBUILD)

Bruno Pagani archange at archlinux.org
Tue Mar 13 21:54:49 UTC 2018


    Date: Tuesday, March 13, 2018 @ 21:54:48
  Author: archange
Revision: 307432

archrelease: copy trunk to community-x86_64

Added:
  qprint/repos/community-x86_64/
  qprint/repos/community-x86_64/PKGBUILD
    (from rev 307431, qprint/trunk/PKGBUILD)

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

Copied: qprint/repos/community-x86_64/PKGBUILD (from rev 307431, qprint/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2018-03-13 21:54:48 UTC (rev 307432)
@@ -0,0 +1,26 @@
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+
+pkgname=qprint
+pkgver=1.1
+pkgrel=1
+pkgdesc='Encoder and decoder for quoted-printable (RFC1521) encoding'
+arch=('x86_64')
+url='https://www.fourmilab.ch/webtools/qprint/'
+license=('custom:Public Domain')
+depends=('glibc')
+source=("${url}${pkgname}-${pkgver}.tar.gz")
+sha256sums=('ffa9ca1d51c871fb3b56a4bf0165418348cf080f01ff7e59cd04511b9665019c')
+
+build() {
+    cd ${pkgname}-${pkgver}
+    ./configure --prefix=/usr #--mandir=/usr/share/man
+    make
+}
+
+package() {
+    cd ${pkgname}-${pkgver}
+    # Dirs are not installed by make install
+    install -d "${pkgdir}"/usr/{bin,share/man/man1}
+    make DESTDIR="${pkgdir}" install
+    install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}



More information about the arch-commits mailing list