SHA256
1
0
forked from pool/djvu2pdf

Accepting request 96559 from home:Ignotusp

OBS-URL: https://build.opensuse.org/request/show/96559
OBS-URL: https://build.opensuse.org/package/show/Publishing/djvu2pdf?expand=0&rev=1
This commit is contained in:
Petr Gajdos 2011-12-16 10:13:41 +00:00 committed by Git OBS Bridge
commit a14da1c043
5 changed files with 89 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
djvu2pdf-0.9.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:afe86237bf4412934d828dfb5d20fe9b584d584ef65b012a893ec853c1e84a6c
size 3037

4
djvu2pdf.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Wed Dec 14 09:31:11 UTC 2011 - nlminhtl@gmail.com
- Intial release

58
djvu2pdf.spec Normal file
View File

@ -0,0 +1,58 @@
#
# spec file for package djvu2pdf
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: djvu2pdf
Version: 0.9.2
Release: 1
License: GPL-2.0+ or LGPL-2.0+
Summary: Converting Djvu Files to PDF Files
Url: http://0x2a.at/s/projects/djvu2pdf
Group: Productivity/Graphics/Other
Source: http://0x2a.at/site/projects/djvu2pdf/%{name}-%{version}.tar.gz
Requires: djvulibre
Requires: ghostscript-library
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
A small tool to convert Djvu files to PDF files. Works on Linux, BSD and MacOS.
%prep
%setup -q
%build
%install
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
install %{name} $RPM_BUILD_ROOT%{_bindir}
install -m 0644 %{name}.1.gz $RPM_BUILD_ROOT%{_mandir}/man1
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%doc changelog copyright
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1.gz
%changelog