package created using the webbuild interface [release 1.1.0-1mamba;Sat May 28 2022]

This commit is contained in:
Silvan Calarco 2024-01-05 22:11:56 +01:00
parent fb2e4e6c52
commit 884c7a95f4
2 changed files with 52 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# extractpdfmark # extractpdfmark
Extract PDFmark can extract page mode and named destinations as PDFmark.

50
extractpdfmark.spec Normal file
View File

@ -0,0 +1,50 @@
Name: extractpdfmark
Version: 1.1.0
Release: 1mamba
Summary: Extract PDFmark can extract page mode and named destinations as PDFmark
Group: Applications/Publishing
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/trueroad/extractpdfmark
Source: https://github.com/trueroad/extractpdfmark.git/v%{version}/extractpdfmark-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libpoppler-cpp-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
%description
Extract PDFmark can extract page mode and named destinations as PDFmark.
%debug_package
%prep
%setup -q
./autogen.sh
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/extractpdfmark
%dir %{_docdir}/extractpdfmark
%{_docdir}/extractpdfmark/*
%{_mandir}/man1/extractpdfmark.1*
%doc COPYING
%changelog
* Sat May 28 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.0-1mamba
- package created using the webbuild interface