[arch-commits] Commit in (4 files)

Gaëtan Bisson bisson at archlinux.org
Thu Aug 1 23:09:21 UTC 2019


    Date: Thursday, August 1, 2019 @ 23:09:21
  Author: bisson
Revision: 358868

initial commit of libuninameslist, dependency of fontforge

Added:
  libuninameslist/
  libuninameslist/repos/
  libuninameslist/trunk/
  libuninameslist/trunk/PKGBUILD

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

Added: libuninameslist/trunk/PKGBUILD
===================================================================
--- libuninameslist/trunk/PKGBUILD	                        (rev 0)
+++ libuninameslist/trunk/PKGBUILD	2019-08-01 23:09:21 UTC (rev 358868)
@@ -0,0 +1,28 @@
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname=libuninameslist
+pkgver=20190701
+pkgrel=1
+pkgdesc='Large, sparse array mapping each unicode code point to the annotation data for it'
+url='https://github.com/fontforge/libuninameslist'
+license=('GPL')
+arch=('custom')
+source=("https://github.com/fontforge/${pkgname}/releases/download/${pkgver}/${pkgname}-dist-${pkgver}.tar.gz")
+sha256sums=('168b0d0877f275c1622fd075e6a1d072c52113dcf5da530536a2f2803ebb89a1')
+
+prepare() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	autoreconf -i
+	automake --foreign -Wall
+}
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure --prefix=/usr
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+}



More information about the arch-commits mailing list