mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
596 B
Bash
29 lines
596 B
Bash
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
|
|
pkgname=libkkc-data
|
|
pkgver=0.2.7
|
|
pkgrel=1
|
|
pkgdesc="Japanese Kana-string to Kana-Kanji-mixed-string converter"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://fcitx-im.org/wiki/Fcitx"
|
|
makedepends=('marisa')
|
|
source=("https://bitbucket.org/libkkc/libkkc-data/downloads/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('1ada8f434c3f642f457a7ac18fc3b554')
|
|
|
|
build() {
|
|
pushd .
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make -j1
|
|
popd
|
|
}
|
|
|
|
package() {
|
|
pushd .
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="$pkgdir" install
|
|
popd
|
|
}
|
|
|