diff options
Diffstat (limited to 'extra/scim-tables')
-rw-r--r-- | extra/scim-tables/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/scim-tables/PKGBUILD b/extra/scim-tables/PKGBUILD new file mode 100644 index 000000000..fec4728e9 --- /dev/null +++ b/extra/scim-tables/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 110895 2011-02-22 20:15:32Z bisson $ +# Contributor: damir <damir@archlinux.org> +# Contributor: Gan Lu <rhythm.gan@gmail.com> +# Maintainer: Gaetan Bisson <bisson@archlinux.org> + +pkgname=scim-tables +pkgver=0.5.9 +pkgrel=2 +pkgdesc='Generic table input method module for SCIM' +arch=('i686' 'x86_64') +url='http://www.scim-im.org/' +license=('GPL') +depends=('scim') +options=('!libtool') +source=("http://downloads.sourceforge.net/sourceforge/scim/${pkgname}-${pkgver}.tar.gz") +sha1sums=('aeca1c8a2eb10a214edc07fa248cd7450f78e387') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --enable-static=no + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |