Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 1BC19781005 for <~alpine/aports@lists.alpinelinux.org>; Wed, 26 Jan 2022 20:27:32 +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=1643228437; 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=MdcYs1vZl1bMPqteadeKKMkDjfTvBJxrU/qaVxFV1aE=; b=m/WsRlECPM9VOuUQRVIULB37ZVujLlcXsH7gltsUF5LBJidi88dg3p7WX9BoVnq/wgD8md 8iB/oDrWUi7kLd0O/hDfGElRf9kvnQ7s+lhTbE6Y7Uf5faPz1626Fah4Ps4RKCCbKYPU+t 2N8EfcKYivCs9H9gQ251cRihl7TMXM0= From: Pedro Lucas Porcellis To: ~alpine/aports@lists.alpinelinux.org Cc: Pedro Lucas Porcellis Subject: [PATCH v4] testing/libgrapheme: new aport Date: Wed, 26 Jan 2022 17:18:40 -0300 Message-Id: <20220126201839.4004-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. --- v3 -> v4: Removed make from makedepends as is already present on it (thanks psykose) testing/libgrapheme/APKBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 testing/libgrapheme/APKBUILD diff --git a/testing/libgrapheme/APKBUILD b/testing/libgrapheme/APKBUILD new file mode 100644 index 0000000000..90cb24e1cd --- /dev/null +++ b/testing/libgrapheme/APKBUILD @@ -0,0 +1,25 @@ +# Maintainer: Pedro Lucas Porcellis +pkgname=libgrapheme +pkgver=1 +pkgrel=0 +pkgdesc="unicode string library" +url="https://libs.suckless.org/libgrapheme" +arch="all" +license="ISC" +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