summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6987a75faee4feb5280aedfc953feed87819a577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: ber532k <ber532k@gmx.de>
pkgname=mkpdf
pkgver=0.2.0
pkgrel=1
pkgdesc="A simple wrapper around pandoc and latexmk"
arch=('any')
url="https://github.com/ber532k/mkpdf"
license=('GPL3')
depends=('texlive-core' 'biber' 'pandoc')
source=("https://github.com/ber532k/$pkgname/archive/v$pkgver.tar.gz")
md5sums=('f2739272ded67ea85095d336ea2cd16a')

package() {
	mkdir -p "$pkgdir/usr/bin"
	install -m755 $pkgname-$pkgver/mkpdf "$pkgdir/usr/bin"
	install -m755 $pkgname-$pkgver/furbishtex "$pkgdir/usr/bin"
	mkdir -p "$pkgdir/usr/share/furbishtex"
	install -m644 $pkgname-$pkgver/default.sed "$pkgdir/usr/share/furbishtex"
}