# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Orivej Desh <smpuj@bk.ru>
pkgname=libunibreak
pkgver=6.1
pkgrel=1
pkgdesc="An implementation of the line breaking algorithm as described in Unicode 5.2.0 Standard Annex 14, Revision 24"
arch=("armv7h" 'aarch64')
url="https://github.com/adah1972/libunibreak/"
license=("custom:zlib/libpng")
depends=('glibc')
replaces=('liblinebreak')
source=("$pkgname-$pkgver.tar.gz::https://github.com/adah1972/libunibreak/archive/libunibreak_${pkgver//./_}.tar.gz")
sha256sums=('890674996168ef5ba143d80d49ab8b61594a4eb70198dcac76caf6e1bd264a41')
build() {
cd "$srcdir/libunibreak-libunibreak_${pkgver//./_}"
./bootstrap
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/libunibreak-libunibreak_${pkgver//./_}"
make DESTDIR="$pkgdir" install
rm -f "$pkgdir"/usr/lib/*.a
install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}