updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / libpinyin-git / PKGBUILD
blobfbbd6aec5309e9d99eacc230308595b19f68870c
1 # Maintainer: Yangtse <yangtsesu@gmail.com>
2 #Contributor: WU Jun <quark at lihdd dot net>
4 pkgname=libpinyin-git
5 pkgver=20111230
6 pkgrel=1
7 pkgdesc="Library to deal with pinyin."
8 arch=('i686' 'x86_64')
9 url="https://github.com/libpinyin/libpinyin"
10 license=('GPL')
11 depends=('db')
12 makedepends=('automake' 'libtool' 'autoconf')
13 provides=('libpinyin')
14 conflicts=('libpinyin')
15 source=(https://github.com/downloads/libpinyin/libpinyin/model.text.tar.gz)
16 noextract=("model.text.tar.gz")
17 md5sums=('373ed75263689cd6543008a6b4b61c62')
18 options=(!libtool)
20 _gitname="libpinyin"
21 _gitroot="https://github.com/libpinyin/libpinyin.git"
23 build() {
24   cd ${srcdir}
26   msg "Connecting to ${_gitname} GIT server..."
27   if [ -d ${_gitname} ]; then
28     cd ${_gitname} && git pull origin master
29     msg "The local files are updated."
30   else
31     git clone ${_gitroot}
32   fi
34   msg "GIT checkout done or server timeout. Preparing sources..."
35   rm -rf "${srcdir}/${_gitname}-build"
36   cp -r "${srcdir}/${_gitname}" "${srcdir}/${_gitname}-build"
37   cp "${srcdir}/model.text.tar.gz" "${srcdir}/${_gitname}-build/data/"
38   sed -i '/wget.*model\.text\.tar\.gz/ d' ${srcdir}/${_gitname}-build/data/Makefile.am
39   cd ${srcdir}/${_gitname}-build
40   
41   aclocal && libtoolize --force && autoheader && automake -a && autoconf
42   ./configure --prefix=/usr && make
45 package() {
46   cd ${srcdir}/${_gitname}-build
47   make DESTDIR=${pkgdir} install