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

Florian Pritz bluewind at archlinux.org
Wed Oct 14 09:09:53 UTC 2020


    Date: Wednesday, October 14, 2020 @ 09:09:53
  Author: bluewind
Revision: 398312

archrelease: copy trunk to community-x86_64

Added:
  qrencode/repos/community-x86_64/
  qrencode/repos/community-x86_64/PKGBUILD
    (from rev 398311, qrencode/trunk/PKGBUILD)

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

Copied: qrencode/repos/community-x86_64/PKGBUILD (from rev 398311, qrencode/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2020-10-14 09:09:53 UTC (rev 398312)
@@ -0,0 +1,34 @@
+# Maintainer: Florian Pritz< flo at xinu.at>
+# Contributor: Dany Martineau <dany.luc.martineau at gmail.com>
+
+pkgname=qrencode
+pkgver=4.1.1
+pkgrel=1
+pkgdesc="C library for encoding data in a QR Code symbol."
+arch=(x86_64)
+depends=('libpng')
+makedepends=(sdl)
+url="https://fukuchi.org/works/qrencode/"
+license=('GPL')
+source=(https://fukuchi.org/works/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('de7185bcab635a34730e1b73d4efa705')
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+check() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  make check
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  make prefix="$pkgdir/usr" install
+}



More information about the arch-commits mailing list