diff options
author | root <root@rshg054.dnsready.net> | 2012-11-11 01:47:32 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-11 01:47:32 -0800 |
commit | c1c596c922f0dc8622339011db936c531647203d (patch) | |
tree | 2855b79d508821e325c1389ae85a521c5214c09a /community/fcitx-configtool | |
parent | 15afd71b619115bc72670c443a6d1b75275ead0c (diff) |
Sun Nov 11 01:44:00 PST 2012
Diffstat (limited to 'community/fcitx-configtool')
-rw-r--r-- | community/fcitx-configtool/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/fcitx-configtool/PKGBUILD b/community/fcitx-configtool/PKGBUILD new file mode 100644 index 000000000..636858d70 --- /dev/null +++ b/community/fcitx-configtool/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 79684 2012-11-11 01:45:13Z fyan $ +# Maintainer: Felix Yan <felixonmars@gmail.com> + +pkgname=fcitx-configtool +pkgver=0.4.5.1 +pkgrel=1 +pkgdesc="GTK based config tool for Fcitx" +arch=('i686' 'x86_64') +url="http://fcitx.googlecode.com/" +license=('GPL2') +depends=("fcitx>=4.2.6" "gtk3" "iso-codes") +makedepends=(cmake) +source=(http://fcitx.googlecode.com/files/$pkgname-$pkgver.tar.xz) + +build() { + cd "$srcdir"/$pkgname-$pkgver + msg "Starting make..." + + rm -rf build + mkdir build + cd build + + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver/build + make DESTDIR="$pkgdir" install +} + +md5sums=('6787dedcb57e6147553ef755c51bb46b') |