mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:17:14 +08:00
28 lines
726 B
Bash
28 lines
726 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
|
|
pkgname=m17n-lib
|
|
pkgver=1.6.4
|
|
pkgrel=2
|
|
pkgdesc='Multilingual text processing library (runtimes)'
|
|
url='http://www.nongnu.org/m17n/'
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('libxft' 'm17n-db' 'fribidi' 'libxml2' 'gd' 'libotf')
|
|
optdepends=('anthy: to use the anthy input method')
|
|
options=('!makeflags' '!libtool' '!emptydirs')
|
|
source=("http://download.savannah.gnu.org/releases/m17n/${pkgname}-${pkgver}.tar.gz")
|
|
sha1sums=('83f2fc4facfd70a580bb95d9381eac7472d85171')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-static=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|