Skip to content

Commit

Permalink
contrib/libkkc: new package (0.3.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
z-erica committed May 8, 2024
1 parent 4267b6d commit d8979fc
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions contrib/libkkc-devel
39 changes: 39 additions & 0 deletions contrib/libkkc/template.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
pkgname = "libkkc"
pkgver = "0.3.5"
pkgrel = 0
build_style = "configure"
configure_args = ["--prefix=/usr"]
make_cmd = "gmake"
hostmakedepends = [
"gmake",
"gobject-introspection",
"intltool",
"pkgconf",
"vala",
]
makedepends = [
"glib-devel",
"json-glib-devel",
"libgee-devel",
"marisa-trie-devel",
"vala-devel",
]
pkgdesc = "Japanese input method library"
maintainer = "Erica Z <[email protected]>"
license = "GPL-3.0-or-later"
url = "https://github.com/ueno/libkkc"
source = f"https://github.com/ueno/libkkc/releases/download/v{pkgver}/libkkc-{pkgver}.tar.gz"
sha256 = "89b07b042dae5726d306aaa1296d1695cb75c4516f4b4879bc3781fe52f62aef"


@subpackage("libkkc-devel")
def _devel(self):
return self.default_devel()


tool_flags = {
"CFLAGS": [
"-Wno-incompatible-function-pointer-types",
"-Wno-int-conversion",
],
}

0 comments on commit d8979fc

Please sign in to comment.