mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
31 lines
711 B
Bash
31 lines
711 B
Bash
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
|
|
pkgname=libkkc
|
|
pkgver=0.3.3
|
|
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' 'libgee06' 'json-glib')
|
|
makedepends=('gobject-introspection' 'intltool' 'vala')
|
|
conflicts=()
|
|
provides=()
|
|
source=("https://bitbucket.org/${pkgname}/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('2a1c03984e327e57d917f5fe3c182fd9')
|
|
|
|
build() {
|
|
pushd .
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
popd
|
|
}
|
|
|
|
package() {
|
|
pushd .
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="$pkgdir" install
|
|
popd
|
|
}
|