mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 18:57:13 +08:00
26 lines
663 B
Bash
26 lines
663 B
Bash
#maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
#contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/libhangul/
|
|
|
|
pkgname=libhangul
|
|
pkgver=0.1.0
|
|
pkgrel=1
|
|
pkgdesc="Common Input Library for Korean IMEngine"
|
|
arch=("x86_64")
|
|
url='http://code.google.com/p/libhangul/'
|
|
license=("LGPL")
|
|
depends=('glibc')
|
|
options=(!libtool)
|
|
source=("http://${pkgname}.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
|
|
sha1sums=('9c6f3a82f2d4068771215f1b9f13a0d4bdbbfc77')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|