Received: from mout-y-209.mailbox.org (mout-y-209.mailbox.org [91.198.250.237]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 86293781784 for <~alpine/aports@lists.alpinelinux.org>; Mon, 29 Mar 2021 22:32:14 +0000 (UTC) Received: from smtp2.mailbox.org (smtp2.mailbox.org [80.241.60.241]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-y-209.mailbox.org (Postfix) with ESMTPS id 4F8Rwx0s83zQjnb; Tue, 30 Mar 2021 00:25:37 +0200 (CEST) X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp2.mailbox.org ([80.241.60.241]) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10030) with ESMTP id 2QstfZ5QmqOZ; Tue, 30 Mar 2021 00:25:32 +0200 (CEST) From: Cormac Stephenson To: ~alpine/aports@lists.alpinelinux.org Cc: Cormac Stephenson Subject: [PATCH] testing/libhangul: new aport Date: Mon, 29 Mar 2021 22:24:33 +0000 Message-Id: <20210329222432.23475-1-c7s@kasku.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-MBO-SPAM-Probability: X-Rspamd-Score: -2.76 / 15.00 / 15.00 X-Rspamd-Queue-Id: CE0D817E8 X-Rspamd-UID: c80a90 --- testing/libhangul/APKBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 testing/libhangul/APKBUILD diff --git a/testing/libhangul/APKBUILD b/testing/libhangul/APKBUILD new file mode 100644 index 0000000000..8e408fea86 --- /dev/null +++ b/testing/libhangul/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Cormac Stephenson +# Maintainer: Cormac Stephenson +pkgname=libhangul +pkgver=0.1.0 +pkgrel=0 +pkgdesc="Library for Korean input method logic" +url="https://github.com/libhangul/libhangul" +arch="all" +license="LGPL-2.1-only" +subpackages="$pkgname-dev $pkgname-lang" +source="https://github.com/libhangul/libhangul/archive/refs/tags/$pkgname-$pkgver.tar.gz" +builddir="libhangul-libhangul-0.1.0" + +prepare() { + default_prepare + ./autogen.sh +} + +build() { + ./configure --prefix=/usr + autoreconf + make +} + +check() { + make check +} + +package() { + cd src/"$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="f601c18de0f29e8826373c77a7b96938a0a54b8b10a14c4daebf2a93d6fc567edc470608f1573853e28db1f9d7a6c66debdbf6dff0262f9d69d4af7ed730f611 libhangul-0.1.0.tar.gz" -- 2.30.2