{"id":16373167,"url":"https://github.com/bbqsrc/keyboard-mdf","last_synced_at":"2026-02-09T10:31:34.317Z","repository":{"id":66192649,"uuid":"159938850","full_name":"bbqsrc/keyboard-mdf","owner":"bbqsrc","description":null,"archived":false,"fork":false,"pushed_at":"2018-12-01T11:43:42.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-02T07:51:28.971Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bbqsrc.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-01T11:43:34.000Z","updated_at":"2018-12-01T11:43:44.000Z","dependencies_parsed_at":"2023-02-25T07:00:12.815Z","dependency_job_id":null,"html_url":"https://github.com/bbqsrc/keyboard-mdf","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bbqsrc/keyboard-mdf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbqsrc%2Fkeyboard-mdf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbqsrc%2Fkeyboard-mdf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbqsrc%2Fkeyboard-mdf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbqsrc%2Fkeyboard-mdf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bbqsrc","download_url":"https://codeload.github.com/bbqsrc/keyboard-mdf/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbqsrc%2Fkeyboard-mdf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29261916,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T04:11:57.159Z","status":"ssl_error","status_checked_at":"2026-02-09T04:11:56.117Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T03:13:33.865Z","updated_at":"2026-02-09T10:31:34.302Z","avatar_url":"https://github.com/bbqsrc.png","language":null,"readme":".. -*- mode: rst -*-\n==========================================\n Keyboards for the Moksha language\n==========================================\n\nThis directory contains source files and build instructions for developing\nkeyboards for the Moksha language. The data and implementations\nare licenced under __LICENCE__, and the \nlicence is also detailed in the LICENCE file of this directory. The authors\nnamed in the AUTHORS file are available to grant other licencing choices.\n\nInstallation and compilation, and a short note on usage, is documented in the\nfile INSTALL.\n\nDocumentation is scattered around on the Giellatekno and Divvun pages, e.g.:\n\n* http://giellatekno.uit.no/mdfdoc/index.html\n* http://divvun.no/doc/tools/docu-mdf-manual.html\n\nThe keyboards will be submitted to the CLDR - Unicode Common Locale Data\nRepository, where they will be available for OS developers to be included. Where\npossible, they will also be made directly available for installation through the\nOS's regular installation procedures.\n\nRequirements\n------------\n\nIn order to compile and use Moksha keyboards you need:\n\n* the relevant operating system (a recent version)\n\nDownloading\n-----------\n\nThe Moksha keyboard sources can be acquired using the `Giella SVN\nrepository \u003chttp://divvun.no/doc/infra/anonymous-svn.html\u003e`_, from the\nlanguage specific directory for keyboards, after the core has been downloaded\nand initial setup has been performed.\n\nInstallation\n------------\n\nINSTALL describes the GNU build system in detail, but for most users the usual:\n\n\t./configure\n\tmake\n\t(as root) make install\n\nshould result in a local installation and::\n\n\t(as root) make uninstall\n\nin its uninstallation.\n\nIf you would rather install in e.g. your home directory\n(or aren't the system administrator), you can tell ./configure::\n\n        ./configure --prefix=$HOME\n\nIf you are checking out the development versions from SVN you must first create\nand install the necessary autotools files from the host system, and check that\nyour environment is correctly set up. This is done by doing:\n\n  ./autogen.sh\n\nIt is common practice to keep `generated files out of version control\n\u003chttp://www.gnu.org/software/automake/manual/automake.html#CVS\u003e`_.\n\nVPATH builds\n------------\n\nIf you want to keep the source code tree clean, a VPATH build is the solution.\nThe idea is to create a build dir somewhere outside of the source code tree,\nand call `configure` from there. Here is one VPATH variant of the standard\nprocedure:\n\n\tmkdir build \u0026\u0026 cd build\n\t../configure\n\tmake\n\t(as root) make install\n\nThis will keep all the generated files within the build/ dir, and keep the src/\ndir (mostly) free of generated files. If you are building from the development\nversion in SVN, you must run the ./autogen.sh script BEFORE you take the steps\nabove.\n\nFor further installation instructions refer to the file ``INSTALL``, which\ncontains the standard installation instructions for GNU autoconf based software.\n\n.. vim: set ft=rst:\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbqsrc%2Fkeyboard-mdf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbbqsrc%2Fkeyboard-mdf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbqsrc%2Fkeyboard-mdf/lists"}