updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / fcitx-configtool-hg / PKGBUILD
blobcbcc69327ce1d1c053a0c796bd2cf8706c3b38ca
1 # Contributor: lh <jason52lh@gmail.com>
3 pkgname=fcitx-configtool-hg
4 pkgver=49
5 pkgrel=1
6 pkgdesc="Fcitx Config Tool"
7 url="http://code.google.com/p/fcitx"
8 arch=('i686' 'x86_64')
9 license=('GPL')
10 depends=('gtk2' 'fcitx' 'libunique')
11 makedepends=('mercurial' 'intltool' 'cmake')
12 optdepends=()
13 options=('!libtool')
14 conflicts=('fcitx-config' 'fcitx-configtool')
15 provides=('fcitx-config' 'fcitx-configtool')
16 replaces=()
17 install=fcitx-configtool.install
18 source=()
19 md5sums=()
21 _hgroot=https://fcitx-config.fcitx.googlecode.com/hg/
22 _hgrepo=fcitx-configtool
24 build() {
25   cd "$srcdir"
27   msg "Starting make..."
29   rm -rf "$srcdir/$_hgrepo-build"
30   cp -rf "$srcdir/$_hgrepo" "$srcdir/$_hgrepo-build"
31   cd "$srcdir/$_hgrepo-build"
32   
33   cmake -DCMAKE_INSTALL_PREFIX=/usr .
34   make
36 package(){
37   cd "$srcdir/$_hgrepo-build"
38   make DESTDIR=${pkgdir} install
40 # vim:syntax=sh