diff --git a/README.md b/README.md index a67a4cd..9f9ba02 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # pdf2svg +A simple PDF to SVG converter using the Poppler and Cairo libraries. + diff --git a/pdf2svg.spec b/pdf2svg.spec new file mode 100644 index 0000000..0c90993 --- /dev/null +++ b/pdf2svg.spec @@ -0,0 +1,52 @@ +Name: pdf2svg +Version: 0.2.2 +Release: 1mamba +Summary: A simple PDF to SVG converter using the Poppler and Cairo libraries +Group: Applications/Graphics +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cityinthesky.co.uk/opensource/pdf2svg +Source: http://www.cityinthesky.co.uk/_media/opensource/pdf2svg-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libatk-devel +BuildRequires: libcairo-devel +BuildRequires: libfontconfig-devel +BuildRequires: libfreetype-devel +BuildRequires: libgdk-pixbuf-devel +BuildRequires: libglib-devel +BuildRequires: libgtk2-devel +BuildRequires: libpango-devel +BuildRequires: libpoppler-glib-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +A simple PDF to SVG converter using the Poppler and Cairo libraries. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/pdf2svg +%doc AUTHORS COPYING LICENSE + +%changelog +* Tue Aug 13 2013 Silvan Calarco 0.2.2-1mamba +- package created by silvan using the webbuild interface