diff options
author | Aleksandar Samardzic <asamardzic@gmail.com> | 2010-04-27 04:41:35 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-15 10:50:30 +0200 |
commit | 8df20b44dc05cf718acf05e8ef8cb40a939d77fa (patch) | |
tree | ae471df9b1bfadcc748dc22833a41c2fd9bdcfdc /office/auctex | |
parent | 68e18aff0c0eef8d944e174a970f36915856235d (diff) | |
download | slackbuilds-8df20b44dc05cf718acf05e8ef8cb40a939d77fa.tar.gz |
office/auctex: Updated for version 11.86.
Diffstat (limited to 'office/auctex')
-rw-r--r-- | office/auctex/auctex.SlackBuild | 15 | ||||
-rw-r--r-- | office/auctex/auctex.info | 8 | ||||
-rw-r--r-- | office/auctex/doinst.sh | 5 |
3 files changed, 11 insertions, 17 deletions
diff --git a/office/auctex/auctex.SlackBuild b/office/auctex/auctex.SlackBuild index 49b0e3dc86..e1718743c9 100644 --- a/office/auctex/auctex.SlackBuild +++ b/office/auctex/auctex.SlackBuild @@ -5,7 +5,7 @@ # Written by Aleksandar Samardzic <asamardzic@matf.bg.ac.yu> PRGNAM=auctex -VERSION=${VERSION:-11.85} +VERSION=${VERSION:-11.86} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -55,18 +55,6 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null -) - -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - rm -f $PKG/usr/info/dir gzip -9 $PKG/usr/info/*.info* @@ -77,6 +65,7 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/office/auctex/auctex.info b/office/auctex/auctex.info index 0592cd2124..f707789880 100644 --- a/office/auctex/auctex.info +++ b/office/auctex/auctex.info @@ -1,10 +1,10 @@ PRGNAM="auctex" -VERSION="11.85" +VERSION="11.86" HOMEPAGE="http://www.gnu.org/software/auctex/" -DOWNLOAD="http://ftp.gnu.org/pub/gnu/auctex/auctex-11.85.tar.gz" -MD5SUM="597c2adbee11877fe1f9b57baf0ba165" +DOWNLOAD="http://ftp.gnu.org/pub/gnu/auctex/auctex-11.86.tar.gz" +MD5SUM="6bc33a67b6ac59db1aa238f3693b36d2" DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Aleksandar Samardzic" EMAIL="asamardzic@gmail.com" -APPROVED="dsomero" +APPROVED="Erik Hanson" diff --git a/office/auctex/doinst.sh b/office/auctex/doinst.sh new file mode 100644 index 0000000000..59c96bd723 --- /dev/null +++ b/office/auctex/doinst.sh @@ -0,0 +1,5 @@ +if [ -x /usr/bin/install-info ] ; then + chroot . /usr/bin/install-info --info-dir=/usr/info /usr/info/preview-latex.info.gz 2>/dev/null + chroot . /usr/bin/install-info --info-dir=/usr/info /usr/info/auctex.info.gz 2>/dev/null +fi + |