mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
development/eclim: Fix building against Sphinx-2.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
This commit is contained in:
parent
3cd8f0149c
commit
8d16392688
3 changed files with 18 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for eclim
|
||||
|
||||
# Copyright 2016-2018 Andrew Clemons, Wellington New Zealand
|
||||
# Copyright 2016-2019 Andrew Clemons, Wellington New Zealand
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -24,7 +24,8 @@
|
|||
|
||||
PRGNAM=eclim
|
||||
VERSION=${VERSION:-2.8.0}
|
||||
BUILD=${BUILD:-2}
|
||||
SPHINX_BOOTSTRAP_VERSION=${SPHINX_BOOTSTRAP_VERSION:-0.7.1}
|
||||
BUILD=${BUILD:-3}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -58,7 +59,18 @@ cd $TMP
|
|||
rm -rf "$PRGNAM"_"$VERSION"
|
||||
tar xvf $CWD/"$PRGNAM"_"$VERSION".tar.gz
|
||||
cd $"$PRGNAM"_"$VERSION"
|
||||
|
||||
zcat $CWD/630fbcd5e6caa810f721b0f0de9478aaf78f7958.patch.gz | patch -p1
|
||||
zcat $CWD/sphinx2.patch.gz | patch -p1
|
||||
|
||||
rm -rf doc/theme
|
||||
|
||||
(
|
||||
cd doc
|
||||
tar -xf "$CWD/sphinx-bootstrap-theme-$SPHINX_BOOTSTRAP_VERSION.tar.gz"
|
||||
mv "sphinx-bootstrap-theme-$SPHINX_BOOTSTRAP_VERSION" theme
|
||||
)
|
||||
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
PRGNAM="eclim"
|
||||
VERSION="2.8.0"
|
||||
HOMEPAGE="http://eclim.org"
|
||||
DOWNLOAD="https://github.com/ervandew/eclim/releases/download/2.8.0/eclim_2.8.0.tar.gz"
|
||||
MD5SUM="aae873ee270d6c7b21a6ff3bec3f08ad"
|
||||
DOWNLOAD="https://github.com/ervandew/eclim/releases/download/2.8.0/eclim_2.8.0.tar.gz \
|
||||
https://github.com/ryan-roemer/sphinx-bootstrap-theme/archive/v0.7.1/sphinx-bootstrap-theme-0.7.1.tar.gz"
|
||||
MD5SUM="aae873ee270d6c7b21a6ff3bec3f08ad \
|
||||
f2cd079095fd6b41b0762b98133b7752"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="apache-ant eclipse-java Sphinx"
|
||||
|
|
BIN
development/eclim/sphinx2.patch.gz
Normal file
BIN
development/eclim/sphinx2.patch.gz
Normal file
Binary file not shown.
Loading…
Reference in a new issue