diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2016-09-02 22:15:27 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2016-09-02 22:15:27 +0200 |
commit | bd57a6c3e97637bef32ca827013f42941530ae20 (patch) | |
tree | 5ac42835c2196f647d4ea0395e15b23d16e74c2d /luatex-svn | |
parent | 44c5e267fd72b6737a6fbb9737c721aa4c8a4e16 (diff) | |
download | arch-packages-bd57a6c3e97637bef32ca827013f42941530ae20.tar.gz |
luatex: fix minor issues
Diffstat (limited to 'luatex-svn')
-rw-r--r-- | luatex-svn/PKGBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/luatex-svn/PKGBUILD b/luatex-svn/PKGBUILD index 226d86e..fe7382d 100644 --- a/luatex-svn/PKGBUILD +++ b/luatex-svn/PKGBUILD @@ -4,8 +4,8 @@ pkgname=luatex-svn pkgrel=1 -pkgdesc="The LuaTeX engine, current SVN trunk" -pkgver=r0 +pkgdesc="The LuaTeX engine, current SVN trunk, standalone binary" +pkgver=r6111 arch=(i686 x86_64) url="http://www.luatex.org" license=('GPLv2') @@ -22,7 +22,7 @@ pkgver() { cd "${_svnlocal}" local version="$(svnversion)" msg "Repo reports revision ${version}" - printf "r%d" "${ver//[[:alpha:]]}" + printf "r%d" "${version//[[:alpha:]]}" } prepare() { @@ -71,7 +71,7 @@ package() { msg "Package miscellaneous files" install -dm755 "${pkgdir}/usr/share/${pkgname}/" install -Dm644 COPYING INSTALL README "${pkgdir}/usr/share/${pkgname}/" - install -Dm644 doc/luatex.pdf "${pkgdir}/usr/share/${pkgname}/" + install -Dm644 manual/luatex.pdf "${pkgdir}/usr/share/${pkgname}/" } # vim:ft=sh:et:sw=2 |