~alpine/aports

testing/libhangul: new aport v1 APPLIED

Cormac Stephenson <c7s@kasku.net>
Cormac Stephenson: 1
 testing/libhangul: new aport

 1 files changed, 34 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/3479/mbox | git am -3
Learn more about email & git

[PATCH] testing/libhangul: new aport Export this patch

Cormac Stephenson <c7s@kasku.net>
---
 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 <c7s@kasku.net>
# Maintainer: Cormac Stephenson <c7s@kasku.net>
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