From 7a65a910b77ad191d69881098c47f9b0c852d92e Mon Sep 17 00:00:00 2001 From: root Date: Tue, 13 Aug 2013 01:33:19 -0700 Subject: Tue Aug 13 01:31:08 PDT 2013 --- community/pyzy/PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 community/pyzy/PKGBUILD (limited to 'community/pyzy') diff --git a/community/pyzy/PKGBUILD b/community/pyzy/PKGBUILD new file mode 100644 index 000000000..ec57c7f84 --- /dev/null +++ b/community/pyzy/PKGBUILD @@ -0,0 +1,49 @@ +# Maintainer: Felix Yan +# Contributor: Kerrick Staley + +pkgname=pyzy +pkgver=1.0 +_commit="d7747466562cb8b4bc2934708e29b7643c7bedbc" +pkgrel=1 +pkgdesc='The Chinese PinYin and Bopomofo conversion library' +arch=('i686' 'x86_64') +url='https://github.com/pyzy/pyzy' +license=('LGPL') +depends=('glib2' 'sqlite' 'util-linux') +makedepends=('git' 'doxygen' 'gnome-common' 'python2') +options=('!libtool') + +__gitroot=git://github.com/pyzy/pyzy.git +__gitname=$pkgname + +build() { + cd "$srcdir" + msg "Connecting to GIT server...." + + if [ -d $__gitname ] ; then + cd $__gitname && git pull origin + msg "The local files are updated." + else + git clone $__gitroot + fi + + msg "GIT checkout done or server timeout" + msg "Starting make..." + + rm -rf "$srcdir/$__gitname-build" + git clone "$srcdir/$__gitname" "$srcdir/$__gitname-build" + cd "$srcdir/$__gitname-build" + git checkout "$_commit" + + # replace python with python2; see https://github.com/hsumita/libpyzy/issues/1 + find . -name '*.py' -exec sed -ri '1s#(bin/|env )python#\1python2#' '{}' \; + + ./autogen.sh --prefix=/usr + make +} + +package() { + cd "$srcdir/$__gitname-build" + + make DESTDIR="$pkgdir" install +} -- cgit v1.2.3-54-g00ecf