Skip to content

Latest commit

 

History

History
88 lines (60 loc) · 2.38 KB

README.md

File metadata and controls

88 lines (60 loc) · 2.38 KB
Translation state

PDF Slicer

This is a simple application for extracting, rotating and reordering pages of a PDF document, with undo/redo support.

Installing

Linux

You can install PDF Slicer using Flatpak. Get it from Flathub.

Building

Fedora

  1. Install dependencies
sudo dnf install gtkmm30-devel poppler-glib-devel cairomm-devel qpdf-devel uuid-devel intltool gettext
  1. Check out a copy of the source code
git clone --recursive https://github.com/junrrein/pdfslicer.git
  1. Build the application
cd ..
mkdir build-pdfslicer
cd build-pdfslicer
cmake ../pdfslicer/ -DCMAKE_BUILD_TYPE=Release
make
  1. Install
sudo make install
  1. Uninstall
sudo xargs rm < install_manifest.txt

Flatpak

flatpak remote-add --from gnome https://sdk.gnome.org/gnome.flatpakrepo
flatpak install gnome org.gnome.Platform//3.30
flatpak install gnome org.gnome.Sdk//3.30
wget https://raw.githubusercontent.com/junrrein/pdfslicer/master/com.github.junrrein.PDFSlicer.json
flatpak-builder --repo=pdfslicer-repo pdfslicer com.github.junrrein.PDFSlicer.json --force-clean
flatpak --user remote-add --no-gpg-verify --if-not-exists pdfslicer-repo pdfslicer-repo
flatpak --user install pdfslicer-repo com.github.junrrein.PDFSlicer

Uninstall

flatpak --user uninstall com.github.junrrein.PDFSlicer
flatpak --user remote-delete pdfslicer-repo
rm -rf pdfslicer/ pdfslicer-repo/

License

PDF Slicer can be used under the terms of the GNU GPL 3.0 license, or, at your option, any later version. A copy can be found at the LICENSE file.

The application icons were made by Lapo Calamandrei and Tobias Bernard. They can be used under the terms of the GNU GPL 3.0 license, or, at your option, any later version. A copy can be found at the LICENSE file.

A number of third-party libraries are distributed as part of this source code repository. They are enumerated at the LICENSE-THIRD-PARTY file, along with details about the license they were relased under.