updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / fcitx-configtool / PKGBUILD
blobc13ecb4c84c99281f057ce22808ed4f87d6075b9
1 #Maintainer Jekyll wu <adaptee [at] gmail [dot] com>
3 pkgname=fcitx-configtool
4 pkgver=0.3.1
5 pkgrel=1
6 pkgdesc="GTK based config tool for Fcitx."
7 arch=('i686' 'x86_64')
8 url="http://fcitx.googlecode.com/"
9 license=('GPL3')
10 depends=(fcitx glib2 gtk2 libunique)
11 makedepends=(cmake)
12 source=(http://fcitx.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
14 build()
16     cd "$srcdir/$pkgname-$pkgver"
17     msg "Starting make..."
19     if [ -d build ] ; then
20         rm build/* -rf
21     else
22         mkdir build
23     fi
25     cd build
27     cmake -DCMAKE_INSTALL_PREFIX=/usr  ..
28     make 
31 package()
33     cd "$srcdir/$pkgname-$pkgver/build"
34     make DESTDIR="$pkgdir" install 
37 md5sums=('b806c53d4370738d95f37685fa3f44a3')