[arch-commits] Commit in texlive-bibtexextra/repos (testing-any testing-any/PKGBUILD)

Rémy Oudompheng remy at archlinux.org
Tue Jun 20 06:03:10 UTC 2017


    Date: Tuesday, June 20, 2017 @ 06:03:09
  Author: remy
Revision: 299002

archrelease: copy trunk to testing-any

Added:
  texlive-bibtexextra/repos/testing-any/
  texlive-bibtexextra/repos/testing-any/PKGBUILD
    (from rev 299001, texlive-bibtexextra/trunk/PKGBUILD)

----------+
 PKGBUILD |   62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

Copied: texlive-bibtexextra/repos/testing-any/PKGBUILD (from rev 299001, texlive-bibtexextra/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2017-06-20 06:03:09 UTC (rev 299002)
@@ -0,0 +1,62 @@
+# $Id$
+# Contributor: Firmicus <firmicus āt gmx dōt net>
+# Maintainer: Rémy Oudompheng <remy at archlinux.org>
+
+pkgname=texlive-bibtexextra
+pkgver=2017.44498
+_revnr=${pkgver#2017.}
+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")
+sha256sums=('c691bc36e4db8f0093d33e516c5a54fefcdd67e5ea26a9e3f0e1248634e21b4d')
+
+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/bbl2bib.pl
+crossrefware/bibdoiadd.pl
+crossrefware/bibmradd.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
+}



More information about the arch-commits mailing list