2014-04-30 11:20:25 +02:00
|
|
|
# Template file for 'texlive-bin'
|
|
|
|
pkgname=texlive-bin
|
2014-07-08 16:19:27 +02:00
|
|
|
version=2014
|
|
|
|
revision=1
|
|
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
2014-04-30 11:20:25 +02:00
|
|
|
homepage="http://tug.org/texlive/"
|
|
|
|
license="GPL-2"
|
2014-07-08 16:19:27 +02:00
|
|
|
short_desc="TeX Live Binary distribution through tl-install (newest version)"
|
2014-04-30 17:44:20 +02:00
|
|
|
provides="texlive-${version}_${revision}"
|
2014-07-08 16:19:27 +02:00
|
|
|
depends="texlive2014-bin"
|
2014-04-30 11:20:25 +02:00
|
|
|
|
|
|
|
do_install(){
|
2014-04-30 15:36:17 +02:00
|
|
|
vmkdir etc/profile.d
|
2014-04-30 11:20:25 +02:00
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
2014-04-30 17:44:20 +02:00
|
|
|
i686)
|
2014-07-08 16:19:27 +02:00
|
|
|
sed -e "s/@@ARCH@@/i386-linux/;s/@@VERSION@@/${version}/" \
|
|
|
|
${FILESDIR}/texlive.sh \
|
2014-04-30 17:44:20 +02:00
|
|
|
> ${DESTDIR}/etc/profile.d/texlive.sh
|
|
|
|
;;
|
|
|
|
x86_64)
|
2014-07-08 16:19:27 +02:00
|
|
|
sed -e "s/@@ARCH@@/x86_64-linux/;s/@@VERSION@@/${version}/" \
|
|
|
|
${FILESDIR}/texlive.sh \
|
2014-04-30 17:44:20 +02:00
|
|
|
> ${DESTDIR}/etc/profile.d/texlive.sh
|
|
|
|
;;
|
2014-04-30 11:20:25 +02:00
|
|
|
esac
|
|
|
|
}
|