mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
51 lines
1.7 KiB
Bash
51 lines
1.7 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
# Contributor: Firmicus <firmicus āt gmx dōt net>
|
|
# Contributor: Rémy Oudompheng <remy@archlinux.org>
|
|
|
|
pkgname=texlive-pstricks
|
|
pkgver=2011.22586
|
|
_pkgver=22586
|
|
pkgrel=1
|
|
pkgdesc="TeX Live - Additional PSTricks packages."
|
|
license=('GPL3')
|
|
arch=(any)
|
|
depends=('texlive-core')
|
|
groups=('texlive-most')
|
|
url='http://tug.org/texlive/'
|
|
install=texlive.install
|
|
changelog=ChangeLog
|
|
source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip")
|
|
md5sums=('7914e28584505b34b6e5d43c7316a8ce')
|
|
|
|
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}_$_pkgver.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
|
|
install -m755 -d $pkgdir/usr/bin
|
|
ln -s /usr/share/texmf-dist/scripts/pst2pdf/pst2pdf $pkgdir/usr/bin/pst2pdf
|
|
}
|