mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
extra/texlive-bin to 2015.37497-10
This commit is contained in:
parent
0554a8f467
commit
9f48e29a1f
1 changed files with 32 additions and 16 deletions
|
@ -7,26 +7,20 @@
|
||||||
# --disable-xindy, remove xindy stuff, segfaults with clisp
|
# --disable-xindy, remove xindy stuff, segfaults with clisp
|
||||||
# --disable-cxx-runtime-hack
|
# --disable-cxx-runtime-hack
|
||||||
|
|
||||||
pkgname=texlive-bin
|
pkgname=('texlive-bin' 'libsynctex')
|
||||||
pkgver=2015.37497
|
pkgver=2015.37497
|
||||||
pkgrel=9
|
pkgrel=10
|
||||||
pkgdesc="TeX Live binaries"
|
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
|
makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
|
||||||
'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
|
'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
|
||||||
'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper')
|
'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
|
||||||
makedepends=('perl' 'clisp' 'ffcall')
|
'perl' 'clisp' 'ffcall')
|
||||||
optdepends=('ed: for texconfig')
|
|
||||||
provides=('lcdf-typetools' 'kpathsea' 'pdfjam')
|
|
||||||
conflicts=('pdfjam')
|
|
||||||
options=('!strip')
|
|
||||||
url='http://tug.org/texlive/'
|
url='http://tug.org/texlive/'
|
||||||
install="texlive.install"
|
|
||||||
source=('fix-fontforge-encoding.patch'
|
source=('fix-fontforge-encoding.patch'
|
||||||
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz")
|
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz")
|
||||||
md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
|
md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
|
||||||
'20be644511704910151560a4d99f6995')
|
'0a8ffd5c0002a080a4202057b1f106c6')
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd source
|
cd source
|
||||||
|
@ -105,7 +99,29 @@ build() {
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package_libsynctex() {
|
||||||
|
pkgdesc='Library for synchronization between TeX files and resulting file'
|
||||||
|
depends=('glibc' 'zlib')
|
||||||
|
|
||||||
|
install -d "$pkgdir"/usr/lib
|
||||||
|
|
||||||
|
for lib in "$srcdir"/source/Work/texk/web2c/.libs/libsynctex.so*; do
|
||||||
|
cp -P $lib "$pkgdir"/usr/lib/
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
package_texlive-bin() {
|
||||||
|
pkgdesc="TeX Live binaries"
|
||||||
|
depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
|
||||||
|
'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
|
||||||
|
'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
|
||||||
|
'libsynctex')
|
||||||
|
provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
|
||||||
|
conflicts=('pdfjam')
|
||||||
|
optdepends=('ed: for texconfig')
|
||||||
|
install="texlive.install"
|
||||||
|
options=('!strip')
|
||||||
|
|
||||||
cd "$srcdir"
|
cd "$srcdir"
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
|
@ -322,7 +338,7 @@ m-tx musixtex musixflx pmx2pdf pmxchords"
|
||||||
! readlink -e "$pkgdir"/usr/bin/$s && rm "$pkgdir"/usr/bin/$s
|
! readlink -e "$pkgdir"/usr/bin/$s && rm "$pkgdir"/usr/bin/$s
|
||||||
done
|
done
|
||||||
###################################################################
|
###################################################################
|
||||||
}
|
|
||||||
|
|
||||||
md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
|
# remove libsynctex
|
||||||
'0a8ffd5c0002a080a4202057b1f106c6')
|
rm -f "$pkgdir"/usr/lib/libsynctex.*
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue