2011-03-22 01:19:59 +01:00
|
|
|
# Description: The Mozilla Firefox browser
|
2006-02-23 17:10:28 +00:00
|
|
|
# URL: http://www.mozilla.com/firefox/
|
2010-05-13 23:34:28 +02:00
|
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
2011-08-31 14:28:04 +02:00
|
|
|
# Depends on: libidl, gtk, python, alsa-lib, yasm, mesa3d
|
2006-02-23 17:10:28 +00:00
|
|
|
|
|
|
|
name=firefox
|
2011-09-06 20:47:04 +02:00
|
|
|
version=6.0.2
|
2011-09-07 18:06:45 +02:00
|
|
|
release=2
|
2011-04-28 21:39:41 +02:00
|
|
|
source=(http://releases.mozilla.org/pub/mozilla.org/$name/releases/$version/source/$name-$version.source.tar.bz2
|
2011-09-06 20:47:04 +02:00
|
|
|
mozconfig coreconf-linux3.patch)
|
2008-06-21 13:45:28 +02:00
|
|
|
|
2006-02-23 17:10:28 +00:00
|
|
|
build() {
|
2008-06-21 13:45:28 +02:00
|
|
|
export MOZ_CO_PROJECT=browser
|
|
|
|
export BUILD_OFFICIAL=1
|
|
|
|
export MOZILLA_OFFICIAL=1
|
|
|
|
export MOZILLA_FIVE_HOME=/usr/lib/firefox
|
|
|
|
|
2011-06-22 19:51:26 +02:00
|
|
|
cd mozilla-release
|
2011-09-06 20:47:04 +02:00
|
|
|
patch -p1 -i $SRC/coreconf-linux3.patch
|
2008-06-21 13:45:28 +02:00
|
|
|
sed -e "s/#CFLAGS#/$CFLAGS/" $SRC/mozconfig > .mozconfig
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
|
|
|
|
install -d \
|
|
|
|
$PKG$MOZILLA_FIVE_HOME \
|
|
|
|
$PKG/usr/bin \
|
|
|
|
$PKG/usr/share/idl/firefox \
|
|
|
|
$PKG/usr/include/firefox
|
|
|
|
|
|
|
|
cp -rL dist/bin/* $PKG$MOZILLA_FIVE_HOME
|
|
|
|
ln -s /usr/lib/firefox/firefox $PKG/usr/bin/firefox
|
|
|
|
|
|
|
|
# devel stuff
|
|
|
|
cp -frL dist/idl/* $PKG/usr/share/idl/firefox/
|
|
|
|
cp -frL dist/include/* $PKG/usr/include/firefox/
|
2011-09-07 18:06:45 +02:00
|
|
|
cp -fL js/src/nanojit/Native{i386,X64}.h $PKG/usr/include/firefox/
|
2011-03-22 01:19:59 +01:00
|
|
|
|
|
|
|
install -d $PKG/etc/ld.so.conf.d
|
|
|
|
echo "/usr/lib/$name" > $PKG/etc/ld.so.conf.d/$name.conf
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
rm $PKG/usr/lib/firefox/README.txt
|
2006-02-23 17:10:28 +00:00
|
|
|
}
|