package created using the webbuild interface [release 1.174-1mamba;Sun Dec 31 2017]

This commit is contained in:
Silvan Calarco 2024-01-05 21:30:07 +01:00
parent d58aaf5d6c
commit 0f86e1f5f6
2 changed files with 54 additions and 0 deletions

View File

@ -1,2 +1,7 @@
# console-setup
This package provides the console with the same keyboard configuration scheme that X Window System has.
In result, there is no need to duplicate or change the console keyboard files just to make simple customizations such as the use of dead keys, the key functioning as AltGr or Compose key, the key(s) to switch between Latin and non-Latin layouts, etc.
Besides the keyboard, the package configures also the font on the console.
It includes a rich collection of fonts and supports several languages that would be otherwise unsupported on the console (such as Armenian, Georgian, Lao and Thai).

49
console-setup.spec Normal file
View File

@ -0,0 +1,49 @@
Name: console-setup
Version: 1.174
Release: 1mamba
Summary: Provides the console with the same keyboard configuration scheme that X Window System has
Group: System/Internationalization
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://anonscm.debian.org/cgit/d-i/console-setup.git
## GITSOURCE https://anonscm.debian.org/git/d-i/console-setup.git 1.174
Source: https://anonscm.debian.org/git/d-i/console-setup.git/%{version}/console-setup-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
This package provides the console with the same keyboard configuration scheme that X Window System has.
In result, there is no need to duplicate or change the console keyboard files just to make simple customizations such as the use of dead keys, the key functioning as AltGr or Compose key, the key(s) to switch between Latin and non-Latin layouts, etc.
Besides the keyboard, the package configures also the font on the console.
It includes a rich collection of fonts and supports several languages that would be otherwise unsupported on the console (such as Armenian, Georgian, Lao and Thai).
%package -n ckbcomp
Group: System/Tools
Summary: Compile a XKB keyboard description to a keymap suitable for loadkeys or kbdcontrol
%description -n ckbcomp
Compile a XKB keyboard description to a keymap suitable for loadkeys or kbdcontrol.
%prep
%setup -q
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -D -m755 Keyboard/ckbcomp %{buildroot}%{_bindir}/ckbcomp
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files -n ckbcomp
%defattr(-,root,root)
%{_bindir}/ckbcomp
%doc COPYRIGHT
%changelog
* Sun Dec 31 2017 Silvan Calarco <silvan.calarco@mambasoft.it> 1.174-1mamba
- package created using the webbuild interface