academic/wxMaxima: Added to 12.2 repository
This commit is contained in:
parent
354aea4aa1
commit
5c40fc4e4f
|
@ -0,0 +1,4 @@
|
|||
wxMaxima is a cross platform GUI for the computer algebra
|
||||
system Maxima based on wxWidgets.
|
||||
|
||||
Requires: maxima and wxGTK/wxPython.
|
|
@ -0,0 +1,4 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|' on
|
||||
# the right side marks the last column you can put a character in. You must make
|
||||
# exactly 11 lines for the formatting to be correct. It's also customary to
|
||||
# leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
wxMaxima: wxMaxima (cross platform GUI for Maxima)
|
||||
wxMaxima:
|
||||
wxMaxima: wxMaxima is a cross platform GUI for the computer algebra system
|
||||
wxMaxima: Maxima based on wxWidgets.
|
||||
wxMaxima:
|
||||
wxMaxima: Homepage: http://wxmaxima.sourceforge.net/wiki/index.php/Main_Page
|
||||
wxMaxima:
|
||||
wxMaxima:
|
||||
wxMaxima:
|
||||
wxMaxima:
|
||||
wxMaxima:
|
|
@ -0,0 +1,80 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for wxMaxima
|
||||
|
||||
# Written by Larry Hajali <larryhaja[at]gmail[dot]com>
|
||||
|
||||
PRGNAM=wxMaxima
|
||||
VERSION=${VERSION:-0.8.2}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--disable-dependency-tracking \
|
||||
--enable-unicode-glyphs \
|
||||
--enable-printing \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
# Cleanup the desktop menu item.
|
||||
echo "" >> wxmaxima.desktop
|
||||
echo "StartupNotify=false" >> wxmaxima.desktop
|
||||
sed -i \
|
||||
-e "s|^Categories=.*|Categories=Utility;|" \
|
||||
-e "s|^Icon=.*|Icon=${PRGNAM}\.png|" \
|
||||
-e "s|^Terminal=0|Terminal=false|" wxmaxima.desktop
|
||||
|
||||
mkdir -p $PKG/usr/share/{applications,pixmaps}
|
||||
install -m 0644 wxmaxima.desktop $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
install -m 0644 data/wxmaxima.png $PKG/usr/share/pixmaps/$PRGNAM.png
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
AUTHORS COPYING INSTALL README art/*.txt \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
rm -f $PKG/usr/share/$PRGNAM/{COPYING,README}
|
||||
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.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="wxMaxima"
|
||||
VERSION="0.8.2"
|
||||
HOMEPAGE="http://wxmaxima.sourceforge.net/wiki/index.php/Main_Page"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/sourceforge/wxmaxima/wxMaxima-0.8.2.tar.gz"
|
||||
MD5SUM="d3d4abde8495aebb295df587587de4a8"
|
||||
MAINTAINER="Larry Hajali"
|
||||
EMAIL="larryhaja[at]gmail[dot]com"
|
||||
APPROVED="dsomero"
|
Loading…
Reference in New Issue