Skip to content

Instantly share code, notes, and snippets.

@Riey
Last active January 15, 2021 15:40
Show Gist options
  • Save Riey/9ddb4d5b75929dc202f80e6fcc2d56e4 to your computer and use it in GitHub Desktop.
Save Riey/9ddb4d5b75929dc202f80e6fcc2d56e4 to your computer and use it in GitHub Desktop.
kime-bin-pkgbuild
# Maintainer: riey <[email protected]>
pkgname=kime-bin
pkgver=0.4.1
pkgrel=1
pkgdesc="Korean IME"
url="https://github.com/Riey/kime"
conflicts=('kime')
provides=('kime')
depends=('gtk3' 'cairo' 'libxcb')
arch=('x86_64')
license=('GPL3')
source=("${url}/releases/download/v${pkgver}/kime-${pkgver}.7z")
md5sums=("7b3529f3c36237f4dfc5c0d5c564899a")
package() {
install -Dm755 kime-xim -t "${pkgdir}/usr/bin"
install -Dm755 im-kime.so -t "${pkgdir}/usr/lib/gtk-3.0/3.0.0/immodules"
install -Dm755 libkime_engine.so -t "${pkgdir}/usr/lib"
install -Dm644 kime_engine.h -t "${pkgdir}/usr/include/kime"
# install -Dm644 config.yaml -t "${pkgdir}/etc/kime"
install -Dm644 layouts/* -t "${pkgdir}/usr/share/kime/layouts"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment