mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:57:13 +08:00
33 lines
839 B
Bash
33 lines
839 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=libhangul
|
|
pkgver=0.0.12
|
|
pkgrel=1
|
|
_filecode=5855
|
|
pkgdesc="Common Input Library for Korean IMEngine"
|
|
arch=("i686" "x86_64")
|
|
url="http://kldp.net/projects/hangul/"
|
|
license=("LGPL")
|
|
depends=('glibc')
|
|
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
|
|
}
|