desktop/libzhuyin/PKGBUILD

23 lines
619 B
Bash
Raw Normal View History

pkgname=libzhuyin
2016-01-20 15:18:18 +08:00
pkgver=1.1.0
2016-03-23 03:15:57 +08:00
pkgrel=2
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"
2015-09-24 20:24:02 +08:00
depends=('db' 'glib2')
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.gz")
2016-01-20 15:18:18 +08:00
sha1sums=('9e8965306d014f6c6e126adc5fa6753f4f4bd87b')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2015-09-24 20:24:02 +08:00
./configure --prefix=/usr \
--disable-static
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
2015-09-24 20:24:02 +08:00
make DESTDIR="${pkgdir}" install
}