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