mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
24 lines
521 B
Bash
24 lines
521 B
Bash
|
# Apps packages for Chakra
|
||
|
|
||
|
pkgname=pdfcrop
|
||
|
pkgver=1.31
|
||
|
pkgrel=1
|
||
|
pkgdesc="A Perl script that can crop PDF files."
|
||
|
arch=('any')
|
||
|
url="http://www.ctan.org/tex-archive/help/Catalogue/entries/pdfcrop.html"
|
||
|
license=('lppl')
|
||
|
depends=('perl' 'texlive-bin' 'ghostscript')
|
||
|
source=("http://mirror.ctan.org/support/pdfcrop/pdfcrop.pl")
|
||
|
md5sums=('312afdc9feb8738d42fe4db687312851')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/
|
||
|
mv pdfcrop.pl pdfcrop
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ${srcdir}/
|
||
|
|
||
|
install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname} || return 1
|
||
|
}
|