From d424e5f410a3640177a13a5bdb7c6bcd2bd0ea83 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 18:49:04 +0100 Subject: [PATCH] package created by silvan using the webbuild interface [release 6.2.0-1mamba;Tue Mar 05 2013] --- README.md | 3 +++ unicode-ucd.spec | 51 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 unicode-ucd.spec diff --git a/README.md b/README.md index f60dc61..4997702 100644 --- a/README.md +++ b/README.md @@ -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. + diff --git a/unicode-ucd.spec b/unicode-ucd.spec new file mode 100644 index 0000000..c98a421 --- /dev/null +++ b/unicode-ucd.spec @@ -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 +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 6.2.0-1mamba +- package created by silvan using the webbuild interface