package created by silvan using the webbuild interface [release 0.2.2-1mamba;Tue Aug 13 2013]

This commit is contained in:
Silvan Calarco 2024-01-06 08:28:16 +01:00
parent 0d4775a9e0
commit aaa15c7a27
2 changed files with 54 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# pdf2svg
A simple PDF to SVG converter using the Poppler and Cairo libraries.

52
pdf2svg.spec Normal file
View File

@ -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 <silvan.calarco@mambasoft.it>
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 <silvan.calarco@mambasoft.it> 0.2.2-1mamba
- package created by silvan using the webbuild interface