package created by silvan using the webbuild interface [release 6.2.0-1mamba;Tue Mar 05 2013]

This commit is contained in:
Silvan Calarco 2024-01-05 18:49:04 +01:00
parent 2fb1c4f7db
commit d424e5f410
2 changed files with 54 additions and 0 deletions

View File

@ -1,2 +1,5 @@
# unicode-ucd
The Unicode Character Database (UCD) consists of a number of data files listing Unicode character properties and related data.
It also includes data files containing test data for conformance to several important Unicode algorithms.

51
unicode-ucd.spec Normal file
View File

@ -0,0 +1,51 @@
Name: unicode-ucd
Version: 6.2.0
Release: 1mamba
Summary: Unicode Character Database
Group: System/Fonts
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.unicode.org/ucd
Source: http://www.unicode.org/Public/zipped/%{version}/UCD.zip
License: MIT
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
The Unicode Character Database (UCD) consists of a number of data files listing Unicode character properties and related data.
It also includes data files containing test data for conformance to several important Unicode algorithms.
%prep
%setup -q -c %{name}-%{version}
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -d -m0755 %{buildroot}%{_datadir}/unicode
cp -a * %{buildroot}%{_datadir}/unicode
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%dir %{_datadir}/unicode
%{_datadir}/unicode/NamesList.html
%{_datadir}/unicode/StandardizedVariants.html
%{_datadir}/unicode/USourceGlyphs.pdf
%{_datadir}/unicode/*.txt
%dir %{_datadir}/unicode/auxiliary
%{_datadir}/unicode/auxiliary/GraphemeBreakTest.html
%{_datadir}/unicode/auxiliary/LineBreakTest.html
%{_datadir}/unicode/auxiliary/SentenceBreakTest.html
%{_datadir}/unicode/auxiliary/WordBreakTest.html
%{_datadir}/unicode/auxiliary/*.txt
%dir %{_datadir}/unicode/extracted
%{_datadir}/unicode/extracted/*.txt
%changelog
* Tue Mar 05 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 6.2.0-1mamba
- package created by silvan using the webbuild interface