diff options
-rw-r--r-- | latex-fitch/PKGBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/latex-fitch/PKGBUILD b/latex-fitch/PKGBUILD index dfa2de3..e839bdb 100644 --- a/latex-fitch/PKGBUILD +++ b/latex-fitch/PKGBUILD @@ -1,5 +1,6 @@ # Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> # Contributor: Lawrence Lee <valheru@facticius.net> + pkgname=latex-fitch pkgver=1.6 pkgrel=1 @@ -12,7 +13,7 @@ install=fitch.install source=(http://folk.uio.no/johanw/fitch.sty) md5sums=('d62bdd0267c217d6017baef950b9205a') -build() { - mkdir -p $startdir/pkg/usr/share/texmf-dist/tex/latex/fitch || return 1 - cp $startdir/fitch.sty $startdir/pkg/usr/share/texmf-dist/tex/latex/fitch || return 1 +package() { + mkdir -p $startdir/pkg/usr/share/texmf-dist/tex/latex/fitch + cp $startdir/fitch.sty $startdir/pkg/usr/share/texmf-dist/tex/latex/fitch } |