mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
05fa7f6e2b
zeitgeist, which depends on json-glib, has been moved to [desktop] before rebuilding it against the latest json-glib version.
28 lines
694 B
Bash
28 lines
694 B
Bash
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
|
|
pkgname=libkkc
|
|
pkgver=0.3.5
|
|
pkgrel=1
|
|
pkgdesc="Japanese Kana-string to Kana-Kanji-mixed-string converter"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="https://gitorious.org/libkkc/libkkc"
|
|
depends=('marisa' 'libgee' 'json-glib')
|
|
makedepends=('gobject-introspection' 'intltool' 'vala')
|
|
conflicts=()
|
|
provides=()
|
|
options=('!libtool')
|
|
source=("https://github.com/ueno/libkkc/releases/download/v$pkgver/libkkc-$pkgver.tar.gz")
|
|
md5sums=('548efbb778e16021c56c5c63bb6df391')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="$pkgdir" install
|
|
}
|