mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/xulrunner: Miscellaneous cleanups.
This commit is contained in:
parent
12936c278b
commit
2b20b5898c
2 changed files with 15 additions and 10 deletions
|
@ -5,17 +5,10 @@ and uninstalling these applications. XULRunner will also provide
|
|||
libxul, a solution which allows the embedding of Mozilla technologies
|
||||
in other projects and products.
|
||||
|
||||
Requirers jdk from /extra in Slackware.
|
||||
This requires jdk from /extra in Slackware.
|
||||
|
||||
Note:
|
||||
If you have to install jdk you need to run ". /etc/profile" before
|
||||
trying to compile xurlrunner.
|
||||
|
||||
Some of the optional dependences are:
|
||||
|
||||
GConf
|
||||
ORBit2
|
||||
avahi
|
||||
gnome-vfs
|
||||
libbonobo
|
||||
libgnome
|
||||
Optional dependencies are GConf, avahi, gnome-vfs, libbonobo, and libgnome.
|
||||
|
|
|
@ -29,10 +29,19 @@
|
|||
|
||||
PRGNAM=xulrunner
|
||||
VERSION=${VERSION:-1.9.1.7}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) export ARCH=i486 ;;
|
||||
arm*) export ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) export ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -47,6 +56,9 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
|
Loading…
Reference in a new issue