Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 1A934780FD9 for <~alpine/aports@lists.alpinelinux.org>; Thu, 23 Dec 2021 03:33:23 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eletrotupi.com; s=default; t=1640230402; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=dgmISlJNYsvPHlGZJNELFLKfaduDGA5VDRsq/iCC3/Q=; b=AnNhBRFG8azsz7InaCRSM5EUjk+h+wTC5YQO4Ij7NJ0KBcjVOpQeCpLHHmzSQgcFu9nU8+ V2QnJC7a/iescKLFGEsTbRKbeG2XFDvqPmFPEI4nr8DFyNt7GpY6WE19NGInPSgHypyM5+ XesQ3oD5yqkV97Enno4F0PVDHuYR9Rs= From: Pedro Lucas Porcellis To: ~alpine/aports@lists.alpinelinux.org Cc: Pedro Lucas Porcellis Subject: [PATCH v2] testing/libgrapheme: new aport Date: Thu, 23 Dec 2021 00:33:13 -0300 Message-Id: <20211223033313.7844-1-porcellis@eletrotupi.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: eletrotupi.com https://libs.suckless.org/libgrapheme The libgrapheme library provides functions to properly handle Unicode strings according to the Unicode specification. --- testing/libgrapheme/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 testing/libgrapheme/APKBUILD diff --git a/testing/libgrapheme/APKBUILD b/testing/libgrapheme/APKBUILD new file mode 100644 index 0000000000..37002cc752 --- /dev/null +++ b/testing/libgrapheme/APKBUILD @@ -0,0 +1,31 @@ +# Maintainer: Pedro Lucas Porcellis +pkgname=libgrapheme +pkgver=1 +pkgrel=0 +pkgdesc="grapheme cluster utility library" +url="https://libs.suckless.org/libgrapheme" +arch="all" +license="ISC" +makedepends="make" +subpackages="$pkgname-doc $pkgname-dev" +source="https://dl.suckless.org/libgrapheme/libgrapheme-$pkgver.tar.gz" + +prepare() { + default_prepare + sed -i 's|/usr/local|/usr|' config.mk +} + +build() { + make all +} + +check() { + make test +} + +package() { + make install PREFIX=/usr DESTDIR="$pkgdir" +} +sha512sums=" +c0f3300d30707266e44ee01f359204720ae1770788cec509b03be914f8581caae144fb72952d111f108ebef21fd96b5ca2cf69463ee569bce4bba8645942ee05 libgrapheme-1.tar.gz +" -- 2.34.1