~alpine/aports

testing/libgrapheme: new aport v3 REJECTED

Pedro Lucas Porcellis <porcellis@eletrotupi.com>
Pedro Lucas Porcellis: 1
 testing/libgrapheme: new aport

 1 files changed, 26 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/3852/mbox | git am -3
Learn more about email & git

[PATCH v3] testing/libgrapheme: new aport Export this patch

Pedro Lucas Porcellis <porcellis@eletrotupi.com>
https://libs.suckless.org/libgrapheme

The libgrapheme library provides functions to properly handle Unicode
strings according to the Unicode specification.

---

This v3 address a requested reword of the description by the author a
little bit, which matches the widen scope that the library aims to reach
in future releases and also strips the sed-command in src-prepare().

 testing/libgrapheme/APKBUILD | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 testing/libgrapheme/APKBUILD

diff --git a/testing/libgrapheme/APKBUILD b/testing/libgrapheme/APKBUILD
new file mode 100644
index 0000000000..0a20c31c47
--- /dev/null
+++ b/testing/libgrapheme/APKBUILD
@@ -0,0 +1,26 @@
# Maintainer: Pedro Lucas Porcellis <porcellis@eletrotupi.com>
pkgname=libgrapheme
pkgver=1
pkgrel=0
pkgdesc="unicode string 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"

build() {
	make all PREFIX=/usr
}

check() {
	make test PREFIX=/usr
}

package() {
	make install PREFIX=/usr DESTDIR="$pkgdir"
}
sha512sums="
c0f3300d30707266e44ee01f359204720ae1770788cec509b03be914f8581caae144fb72952d111f108ebef21fd96b5ca2cf69463ee569bce4bba8645942ee05  libgrapheme-1.tar.gz
"
-- 
2.34.1