diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/fcitx-googlepinyin/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/fcitx-googlepinyin/PKGBUILD')
-rw-r--r-- | community/fcitx-googlepinyin/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/fcitx-googlepinyin/PKGBUILD b/community/fcitx-googlepinyin/PKGBUILD new file mode 100644 index 000000000..f10ec9238 --- /dev/null +++ b/community/fcitx-googlepinyin/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 81673 2012-12-26 11:44:06Z fyan $ +# Maintainer: Felix Yan <felixonmars@gmail.com> + +pkgname=fcitx-googlepinyin +pkgver=0.1.6 +pkgrel=3 +pkgdesc="Fcitx Wrapper for googlepinyin" +arch=('i686' 'x86_64') +url="http://code.google.com/p/fcitx" +license=('GPL') +depends=('fcitx>=4.2.0' 'libgooglepinyin>=0.1.2') +makedepends=('cmake' 'intltool') +source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz") +install=fcitx-googlepinyin.install +md5sums=('7ee33bbb66d29536819b0d2f73b69713') + +build() { + cd "$srcdir/${pkgname}-${pkgver}" + + rm -rf build + mkdir build + cd build + + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .. + make +} + +package() { + cd "$srcdir/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install +} |