diff --git a/README.md b/README.md index 5da0528..8ec23c9 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,28 @@ # uniconvertor +UniConvertor is a universal vector graphics translator. It is a command line tool which uses sK1 object model to convert one format to another. +Development of the import/export modules for this program goes through different stages, quality and feature coverage are different among formats. +UniConvetor is used in Inkscape and Scribus projects as external tool for CorelDraw files importing. + +Import filters: +* CorelDRAW ver.7-X3,X4 (CDR/CDT/CCX/CDRX/CMX) +* Adobe Illustrator up to 9 ver. (AI postscript based) +* Postscript (PS) +* Encapsulated Postscript (EPS) +* Computer Graphics Metafile (CGM) +* Windows Metafile (WMF) +* XFIG +* Scalable Vector Graphics (SVG) +* Skencil/Sketch/sK1 (SK and SK1) +* Acorn Draw (AFF) + +Export filters: +* AI (Postscript based Adobe Illustrator 5.0 format) +* SVG (Scalable Vector Graphics) +* SK (Sketch/Skencil format) +* SK1 (sK1 format) +* CGM (Computer Graphics Metafile) +* WMF (Windows Metafile) +* PDF (Portable Document Format) +* PS (PostScript) + diff --git a/uniconvertor.spec b/uniconvertor.spec new file mode 100644 index 0000000..1915d74 --- /dev/null +++ b/uniconvertor.spec @@ -0,0 +1,74 @@ +Name: uniconvertor +Version: 1.1.5 +Release: 1mamba +Summary: A universal vector graphics translator +Group: Applications/Graphics +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://sk1project.org/modules.php?name=Products&product=uniconvertor +Source: http://sk1project.org/downloads/uniconvertor/v%{version}/uniconvertor-%{version}.tar.gz +License: GPL +BuildRoot: %{_tmppath}/%{name}-%{version}-root +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python-lcms +Requires: python-Imaging + +%description +UniConvertor is a universal vector graphics translator. It is a command line tool which uses sK1 object model to convert one format to another. +Development of the import/export modules for this program goes through different stages, quality and feature coverage are different among formats. +UniConvetor is used in Inkscape and Scribus projects as external tool for CorelDraw files importing. + +Import filters: +* CorelDRAW ver.7-X3,X4 (CDR/CDT/CCX/CDRX/CMX) +* Adobe Illustrator up to 9 ver. (AI postscript based) +* Postscript (PS) +* Encapsulated Postscript (EPS) +* Computer Graphics Metafile (CGM) +* Windows Metafile (WMF) +* XFIG +* Scalable Vector Graphics (SVG) +* Skencil/Sketch/sK1 (SK and SK1) +* Acorn Draw (AFF) + +Export filters: +* AI (Postscript based Adobe Illustrator 5.0 format) +* SVG (Scalable Vector Graphics) +* SK (Sketch/Skencil format) +* SK1 (sK1 format) +* CGM (Computer Graphics Metafile) +* WMF (Windows Metafile) +* PDF (Portable Document Format) +* PS (PostScript) + +%prep +%setup -q + +%build +%{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + --prefix=%{_prefix} \ + --root=%{buildroot} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/uniconvertor +%{python_sitearch}/uniconvertor-%{version}-py*.egg-info +%{python_sitearch}/uniconvertor/* +%doc README + +%changelog +* Thu Jan 31 2013 Automatic Build System 1.1.5-1mamba +- automatic version update by autodist + +* Tue Mar 10 2009 Silvan Calarco 1.1.3-1mamba +- package created by autospec