mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
libraries/ogre: Fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
parent
76a7390493
commit
9746a1a4ea
1 changed files with 15 additions and 9 deletions
|
@ -24,22 +24,25 @@
|
|||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# 20210215 bkw: modified by SlackBuilds.org: force-disable the assimp
|
||||
# plugin. Our assimp is too old (or too new?) for this version of
|
||||
# ogre. This allows ogre to be built on a system where assimp is
|
||||
# installed.
|
||||
# 20220420 bkw: Modified by SlackBuilds.org, BUILD=2:
|
||||
# - move docs to proper Slackware doc dir.
|
||||
|
||||
# 20220214 bkw: Modified by SlackBuilds.org again: ogre-13.2.4 really
|
||||
# wants imgui-1.85 (not 1.86; it was failing to build with that). Also,
|
||||
# we can use assimp now, so get rid of -DOGRE_BUILD_PLUGIN_ASSIMP=FALSE.
|
||||
# It will be autodetected, the build will succeed with or without it.
|
||||
|
||||
# 20210215 bkw: modified by SlackBuilds.org: force-disable the assimp
|
||||
# plugin. Our assimp is too old (or too new?) for this version of
|
||||
# ogre. This allows ogre to be built on a system where assimp is
|
||||
# installed.
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=ogre
|
||||
VERSION=${VERSION:-13.2.4}
|
||||
IMGUIVER=${IMGUIVER:-1.85}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
||||
|
@ -113,16 +116,19 @@ cd build
|
|||
-DOGRE_BUILD_COMPONENT_CSHARP=FALSE \
|
||||
../
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
make install/strip DESTDIR=$PKG
|
||||
cd -
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS LICENSE README.md $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
if [ -e $PKG/usr/share/doc/OGRE ]; then
|
||||
mv $PKG/usr/share/doc/OGRE/* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
fi
|
||||
rm -rf $PKG/usr/share/doc
|
||||
rmdir $PKG/usr/doc/$PRGNAM-$VERSION/api &>/dev/null || true
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
|
|
Loading…
Reference in a new issue