mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 15:54:36 +08:00
56 lines
1.8 KiB
Bash
56 lines
1.8 KiB
Bash
|
# Arch Maintainer: Rémy Oudompheng <remy@archlinux.org>
|
||
|
|
||
|
pkgname=texlive-formatsextra
|
||
|
pkgver=2017.45678
|
||
|
_revnr=${pkgver#2017.}
|
||
|
pkgrel=1
|
||
|
pkgdesc="TeX Live - collection of extra TeX 'formats'"
|
||
|
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"
|
||
|
"${pkgname}.fmts")
|
||
|
options=('!emptydirs')
|
||
|
provides=('texlive-htmlxml')
|
||
|
conflicts=('texlive-htmlxml')
|
||
|
replaces=('texlive-htmlxml')
|
||
|
sha256sums=('f4f33f6a151bef49d79a5ee41686bd356d01de85f011df0fe08d6de64b71f0d8'
|
||
|
'edee1d8b46005847381dbf20afacad6d14f3d59406facdc609c92d9e20ed6df2')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir"
|
||
|
for p in *.tar.xz; do
|
||
|
case $p in
|
||
|
aleph.*|lambda.*|omega.*)
|
||
|
;;
|
||
|
*)
|
||
|
bsdtar -xf $p
|
||
|
;;
|
||
|
esac
|
||
|
done
|
||
|
rm -rf {tlpkg,doc,source} || true
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir"
|
||
|
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 -m644 "${pkgname}.fmts" $pkgdir/var/lib/texmf/arch/installedpkgs/
|
||
|
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
|
||
|
}
|