development/universal-ctags: Updated for version 29ae3cc.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Eugene Wissner 2016-10-02 06:15:33 +07:00 committed by Willy Sudiarto Raharjo
parent 786bb9cf83
commit e3a9331087
3 changed files with 12 additions and 8 deletions

View File

@ -10,5 +10,5 @@ together.
Note that the resulting package will overwrite Exuberant Ctags included in
Slackware's vim package:
/usr/bin/ctags
/usr/man/man1/ctags.1.gz
/usr/man/man1/ctags.1.gz (only if rst2man command is available)
In case you remove this package, you'll need to reinstall vim.

View File

@ -23,8 +23,8 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=universal-ctags
VERSION=${VERSION:-f2d8a3d}
GITVERSION=${GITVERSION:-f2d8a3d9390dbfb84a5c64c4db344d104d9dc6e0}
VERSION=${VERSION:-29ae3cc}
GITVERSION=${GITVERSION:-29ae3cc01201d1bebd5309e436ea8e7e7643deb1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -86,8 +86,12 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install-strip DESTDIR=$PKG
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
# Generated only if rst2man is available.
if [ -d $PKG/usr/man ]
then
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
fi
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a COPYING docs/*.rst $PKG/usr/doc/$PRGNAM-$VERSION

View File

@ -1,8 +1,8 @@
PRGNAM="universal-ctags"
VERSION="f2d8a3d"
VERSION="29ae3cc"
HOMEPAGE="https://ctags.io/"
DOWNLOAD="https://github.com/universal-ctags/ctags/archive/f2d8a3d9390dbfb84a5c64c4db344d104d9dc6e0.zip"
MD5SUM="a3c7696cdb5dc008fbc712356032d946"
DOWNLOAD="https://github.com/universal-ctags/ctags/archive/29ae3cc01201d1bebd5309e436ea8e7e7643deb1.zip"
MD5SUM="61b48bf464270a8c82d9e0b0b313a55a"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="%README%"