Date: Tuesday, September 1, 2015 @ 12:39:22 Author: remy Revision: 245169
archrelease: copy trunk to testing-any Added: texlive-bibtexextra/repos/testing-any/ texlive-bibtexextra/repos/testing-any/PKGBUILD (from rev 245168, texlive-bibtexextra/trunk/PKGBUILD) texlive-bibtexextra/repos/testing-any/texlive.install (from rev 245168, texlive-bibtexextra/trunk/texlive.install) -----------------+ PKGBUILD | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ texlive.install | 12 ++++++++++ 2 files changed, 73 insertions(+) Copied: texlive-bibtexextra/repos/testing-any/PKGBUILD (from rev 245168, texlive-bibtexextra/trunk/PKGBUILD) =================================================================== --- testing-any/PKGBUILD (rev 0) +++ testing-any/PKGBUILD 2015-09-01 10:39:22 UTC (rev 245169) @@ -0,0 +1,61 @@ +# $Id$ +# Contributor: Firmicus <firmicus āt gmx dōt net> +# Maintainer: Rémy Oudompheng <r...@archlinux.org> + +pkgname=texlive-bibtexextra +pkgver=2015.37536 +_revnr=${pkgver#2015.} +pkgrel=1 +pkgdesc="TeX Live - Additional BibTeX styles and bibliography databases" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip") +install=texlive.install +md5sums=('ff58f587692a19c21d28457bdb537041') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; + done + if [[ -d texmf-dist ]]; then + find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; + find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; + fi + if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then + find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; + fi + + # link programs from /usr/share/texmf-dist/scripts + _linked_scripts=" +bibexport/bibexport.sh +crossrefware/bibdoiadd.pl +crossrefware/bibzbladd.pl +crossrefware/ltx2crossrefxml.pl +listbib/listbib +multibibliography/multibibliography.pl +urlbst/urlbst +" + install -m755 -d $pkgdir/usr/bin + for _script in ${_linked_scripts}; do + _scriptbase=$(basename $_script) + _scriptbase=${_scriptbase%.*} + ln -s /usr/share/texmf-dist/scripts/${_script} ${pkgdir}/usr/bin/${_scriptbase} + done +} Copied: texlive-bibtexextra/repos/testing-any/texlive.install (from rev 245168, texlive-bibtexextra/trunk/texlive.install) =================================================================== --- testing-any/texlive.install (rev 0) +++ testing-any/texlive.install 2015-09-01 10:39:22 UTC (rev 245169) @@ -0,0 +1,12 @@ +post_install() { + echo ">>> texlive: updating the filename database..." + /usr/bin/mktexlsr +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}