desktop/libzhuyin/PKGBUILD

24 lines
655 B
Bash
Raw Normal View History

pkgname=libzhuyin
2015-09-15 21:49:19 +08:00
pkgver=1.0.2
pkgrel=1
pkgdesc="The libzhuyin project aims to provide the algorithms core for intelligent sentence-based Chinese zhuyin input methods."
arch=('x86_64')
license=('GPL')
url="https://github.com/libzhuyin/libzhuyin"
depends=("db" "glib2")
makedepends=("cmake")
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.gz")
2015-09-15 21:49:19 +08:00
sha1sums=('9e45ab52d636da216ee776e4a9dfcfee533c4554')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=${pkgdir}/usr \
--disable-static
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make INSTALL_ROOT="${pkgdir}" install
}