Initialize hyphen-dict package. tizen
authorYoungbok Shin <youngb.shin@samsung.com>
Wed, 6 Apr 2016 05:38:50 +0000 (14:38 +0900)
committerYoungbok Shin <youngb.shin@samsung.com>
Wed, 6 Apr 2016 05:38:50 +0000 (14:38 +0900)
Please, put your hyphenation dictionary files into ./dict
If you added new dictionary files, please modify LICENSE of the package.

dict/hyph_please_replace_it.dic [new file with mode: 0644]
packaging/hyphen-dict.manifest [new file with mode: 0644]
packaging/hyphen-dict.spec [new file with mode: 0644]

diff --git a/dict/hyph_please_replace_it.dic b/dict/hyph_please_replace_it.dic
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packaging/hyphen-dict.manifest b/packaging/hyphen-dict.manifest
new file mode 100644 (file)
index 0000000..7bdc212
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+    <request>
+     <domain name="_"/>
+  </request>
+</manifest>
diff --git a/packaging/hyphen-dict.spec b/packaging/hyphen-dict.spec
new file mode 100644 (file)
index 0000000..186e049
--- /dev/null
@@ -0,0 +1,27 @@
+Name:       hyphen-dict
+Summary:    Hyphenation dictionary package
+Version:    0.0.1
+Release:    1
+Group:      TO_BE/FILLED_IN
+License:    GPL-2.0
+Source0:    %{name}-%{version}.tar.gz
+Source1001: packaging/hyphen-dict.manifest
+
+%description
+Hyphenation dictionary package.
+This package is used by hyphen library.
+
+%prep
+%setup -q
+
+%build
+cp %{SOURCE1001} .
+
+%install
+mkdir -p %{buildroot}%{_datadir}/hyphen
+cp dict/*.dic %{buildroot}%{_datadir}/hyphen/
+
+%files
+%defattr(-,root,root,-)
+%manifest %{name}.manifest
+%{_datadir}/hyphen/*.dic