-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1ff35c
commit af34236
Showing
3 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Maintainer: Santiago Lo Coco <mail at slococo dot com dot ar> | ||
|
||
pkgname="paisa" | ||
pkgver=0.4.0 | ||
pkgrel=2 | ||
pkgdesc="A simple tool to rearrange/merge/delete/rotate pages from PDF files." | ||
arch=('any') | ||
url="https://github.com/mgropp/pdfjumbler" | ||
license=('GPL3') | ||
depends=('java-runtime>=11') | ||
source=("${pkgname}-${pkgver}.jar::${url}/releases/download/v${pkgver}/${pkgname}.jar" | ||
"https://raw.githubusercontent.com/mgropp/pdfjumbler/master/LICENSE" | ||
"${pkgname}.sh") | ||
sha256sums=('551b29996f6e4e4aeedf8b9cf18ef42dcdd467948b7e6a72cd5711a619efd18d' | ||
'3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986' | ||
'fc703e692a41163f92247a45564519e1b27685ff7928bbdd9ebd4264f2698615') | ||
|
||
package() { | ||
install -Dm755 "${pkgname}-${pkgver}.jar" "$pkgdir/usr/share/java/${pkgname}/${pkgname}.jar" | ||
install -Dm755 "${pkgname}.sh" "$pkgdir/usr/bin/${pkgname}" | ||
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${{pkgname}}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
exec /usr/bin/java -jar /usr/share/java/pdfjumbler/pdfjumbler.jar "$@" |