diff options
Diffstat (limited to 'extra/libhangul/PKGBUILD')
-rw-r--r-- | extra/libhangul/PKGBUILD | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/extra/libhangul/PKGBUILD b/extra/libhangul/PKGBUILD index 0bd75b576..a10af3943 100644 --- a/extra/libhangul/PKGBUILD +++ b/extra/libhangul/PKGBUILD @@ -1,22 +1,22 @@ -# $Id: PKGBUILD 140549 2011-10-17 07:24:10Z bisson $ +# $Id: PKGBUILD 188501 2013-06-15 04:42:48Z bisson $ # Contributor: damir <damir@archlinux.org> # Maintainer: Gaetan Bisson <bisson@archlinux.org> pkgname=libhangul pkgver=0.1.0 -pkgrel=1 -_filecode=6000 +pkgrel=2 pkgdesc='Input method library for Korean' -arch=('i686' 'x86_64' 'mips64el') -url='http://kldp.net/projects/hangul/' +url='http://code.google.com/p/libhangul/' license=('LGPL') -options=('!libtool') -source=("https://libhangul.googlecode.com/files/libhangul-${pkgver}.tar.gz") +arch=('i686' 'x86_64' 'mips64el') +source=("http://${pkgname}.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") sha1sums=('9c6f3a82f2d4068771215f1b9f13a0d4bdbbfc77') +options=('!libtool') + build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --enable-static=no + ./configure --prefix=/usr --disable-static make } |