Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Link docs to /usr/share/docs #14

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ These files are released to the public domain. See the [Gregorio project](https:

## Changelog

### 2022-12-18

#### Changed
- PKGBUILD for `gregorio` changed to link docs to `/usr/share/docs/gregorio`.
- PKGBUILD for `gregorio-git` changed to specify `python2` in `makedepends`.

### 2021-03-14

#### Changed
Expand Down
4 changes: 2 additions & 2 deletions gregorio-git/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# Contributor: Br. Elijah Schwab (github - eschwab)
pkgbase=gregorio-git
pkgname=$pkgbase
pkgver=5.2.0.r4342.8d81faff
pkgver=6.0.0.r4528.c400a14e
pkgrel=1
pkgdesc="Command-line tool to typeset Gregorian chant"
url=http://gregorio-project.github.io
arch=("i686" "x86_64")
license=("GPL")
makedepends=("git" "python" "fontforge")
makedepends=("git" "python2" "fontforge")
depends=("texlive-core" "texlive-fontsextra" "texlive-bin" "texlive-formatsextra" "texlive-latexextra")
conflicts=("gregorio-svn" "gregorio" "gregoriotex")
provides=("gregorio")
Expand Down
6 changes: 5 additions & 1 deletion gregorio/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pkgbase=gregorio
pkgname=$pkgbase
pkgver=6.0.0
pkgrel=1
pkgrel=2
_pkgver_underscores=$(echo $pkgver | sed -e 's/\./_/g')
pkgdesc="Command-line tool to typeset Gregorian chant"
url=http://gregorio-project.github.io
Expand Down Expand Up @@ -41,6 +41,10 @@ package() {
msg "Installing TeX files..."
cd "$srcdir/$pkgbase/"
./install-gtex.sh dir:$pkgdir/usr/share/texmf || return 1
msg "Linking docs to /usr/share/doc..."
mkdir -p $pkgdir/usr/share/doc/
cd $pkgdir/usr/share/doc
ln -s ../texmf/doc/luatex/gregoriotex gregorio
msg "Installing fonts..."
cd "$srcdir/"
texlua install_supp_fonts.lua $pkgdir/usr/share/texmf || return 1
Expand Down