mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 15:07:14 +08:00
Adding texlive-latex3
This commit is contained in:
parent
4b1dc34319
commit
b49f1c2270
40
texlive-latex3/PKGBUILD
Normal file
40
texlive-latex3/PKGBUILD
Normal file
@ -0,0 +1,40 @@
|
||||
# Platform Packages for Chakra
|
||||
|
||||
pkgname=texlive-latex3
|
||||
pkgver=2009.16491
|
||||
pkgrel=1
|
||||
pkgdesc="TeX Live - LaTeX3 packages"
|
||||
license=('GPL')
|
||||
arch=(any)
|
||||
depends=('texlive-core')
|
||||
groups=('texlive-most')
|
||||
url='http://tug.org/texlive/'
|
||||
source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip")
|
||||
options=('!emptydirs')
|
||||
install=texlive.install
|
||||
md5sums=('697255f3d9e0c460e18df7f7010d7638')
|
||||
|
||||
build() {
|
||||
cd $srcdir
|
||||
install -m755 -d $pkgdir/usr/share/texmf-var/arch/installedpkgs || return 1
|
||||
sed -i '/^#/d' CONTENTS || return 1
|
||||
_revnr=`echo $pkgver | sed 's/2009\.//'`
|
||||
install -m644 CONTENTS $pkgdir/usr/share/texmf-var/arch/installedpkgs/${pkgname}_${_revnr}.pkgs || return 1
|
||||
for p in *.tar.xz; do
|
||||
bsdtar -xf $p || return 1
|
||||
done
|
||||
rm -rf {tlpkg,doc,source}
|
||||
install -m755 -d $pkgdir/usr/share || return 1
|
||||
wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done)
|
||||
for dir in $wanteddirs; do
|
||||
find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; || return 1
|
||||
find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; || return 1
|
||||
done
|
||||
if [[ -d texmf-dist ]]; then
|
||||
find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; || return 1
|
||||
find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; || return 1
|
||||
fi
|
||||
if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then
|
||||
find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \;
|
||||
fi
|
||||
}
|
12
texlive-latex3/texlive.install
Normal file
12
texlive-latex3/texlive.install
Normal file
@ -0,0 +1,12 @@
|
||||
post_install() {
|
||||
echo ">>> texlive: updating the filename database..."
|
||||
texconfig-sys rehash
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
Loading…
Reference in New Issue
Block a user