1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # Template file for 'texlive-bin'
- pkgname=texlive2016-bin
- version=2016
- revision=3
- archs="x86_64* i686 aarch64 arm*"
- maintainer="Leah Neukirchen <leah@vuxu.org>"
- homepage="http://tug.org/texlive/"
- license="GPL-2"
- short_desc="TeX Live Binary distribution through tl-install"
- depends="cairo pixman graphite gd poppler libsigsegv
- zziplib libpng libjpeg-turbo freetype icu harfbuzz wget perl
- ghostscript xz"
- provides="tex-${version}_1"
- distfiles="ftp://ftp.tug.org/texlive/historic/${version}/install-tl-unx.tar.gz>${pkgname}-${version}-${revision}.tar.gz"
- checksum=a0559306f4ef1903b92c829a11177dcbf3b85ddb9c6b512a80791e2c543f7d95
- create_wrksrc=yes
- # Package build options
- build_options="basic small medium full"
- build_options_default="small"
- desc_option_basic="Install TeXLive using scheme-basic"
- desc_option_small="Install TeXLive using scheme-small"
- desc_option_medium="Install TeXLive using scheme-medium"
- desc_option_full="Install TeXLive using scheme-full"
- pre_install(){
- rm -rf ${wrksrc}/install-tl*/tlpkg/installer/xz \
- ${wrksrc}/install-tl*/tlpkg/installer/wget
- }
- do_install(){
- vmkdir opt/texlive${version}-installer
- vcopy "install-tl-*/*" /opt/texlive${version}-installer
- vinstall ${FILESDIR}/xbps.profile 644 opt/texlive${version}-installer
- if [ "$build_option_basic" ]; then
- echo "selected_scheme scheme-basic"
- elif [ "$build_option_small" ]; then
- echo "selected_scheme scheme-small"
- elif [ "$build_option_medium" = "medium" ];then
- echo "selected_scheme scheme-medium"
- elif [ "$build_option_full" ];then
- echo "selected_scheme scheme-full"
- fi >>${DESTDIR}/opt/texlive${version}-installer/xbps.profile
- vlicense ${DESTDIR}/opt/texlive${version}-installer/LICENSE.CTAN
- vlicense ${DESTDIR}/opt/texlive${version}-installer/LICENSE.TL
- }
|