diff options
Diffstat (limited to 'extra/libhangul/PKGBUILD')
-rw-r--r-- | extra/libhangul/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/libhangul/PKGBUILD b/extra/libhangul/PKGBUILD new file mode 100644 index 000000000..fb65acc74 --- /dev/null +++ b/extra/libhangul/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 110870 2011-02-22 20:13:14Z bisson $ +# Contributor: damir <damir@archlinux.org> +# Maintainer: Gaetan Bisson <bisson@archlinux.org> + +pkgname=libhangul +pkgver=0.0.12 +pkgrel=2 +_filecode=5855 +pkgdesc='Input method library for Korean' +arch=('i686' 'x86_64') +url='http://kldp.net/projects/hangul/' +license=('LGPL') +options=('!libtool') +source=("http://kldp.net/frs/download.php/${_filecode}/${pkgname}-${pkgver}.tgz") +sha1sums=('5e02fe61c8f51ace03bebb1ec75875a2262e3cd5') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --enable-static=no + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |