38 lines
1.3 KiB
Bash
38 lines
1.3 KiB
Bash
# Template file for 'libpinyin'
|
|
pkgname=libpinyin
|
|
version=2.6.0
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--enable-libzhuyin"
|
|
hostmakedepends="intltool libtool pkg-config autoconf-archive autoconf automake"
|
|
makedepends="db-devel libglib-devel"
|
|
short_desc="Support library for PinYin and ZhuYin (Bopofomo)"
|
|
maintainer="Ben Sung Hsu <pobetiger+github@gmail.com>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://github.com/libpinyin/libpinyin"
|
|
changelog="https://raw.githubusercontent.com/libpinyin/libpinyin/${version}/ChangeLog"
|
|
distfiles="https://github.com/libpinyin/libpinyin/archive/${version}.tar.gz
|
|
http://downloads.sourceforge.net/libpinyin/models/model19.text.tar.gz"
|
|
checksum="2b52f617a99567a8ace478ee82ccc62d1761e3d1db2f1e05ba05b416708c35d2
|
|
56422a4ee5966c2c809dd065692590ee8def934e52edbbe249b8488daaa1f50b"
|
|
nocross="Requires data generators compiled against target system"
|
|
skip_extraction="model19.text.tar.gz"
|
|
|
|
post_extract() {
|
|
bsdtar -C data -xf $XBPS_SRCDISTDIR/$pkgname-$version/model19.text.tar.gz
|
|
}
|
|
|
|
pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
libpinyin-devel_package() {
|
|
depends="libglib-devel libpinyin-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|