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
|
2012-03-14 13:12:22 +01:00
|
|
|
version=11.0
|
2011-09-28 12:20:23 +02:00
|
|
|
release=1
|
2011-12-20 20:23:49 +01:00
|
|
|
source=(ftp://ftp.mozilla.org/pub/firefox/releases/$version/source/firefox-$version.source.tar.bz2
|
2011-11-06 14:26:19 +01:00
|
|
|
mozconfig)
|
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-12-20 20:23:49 +01:00
|
|
|
export CFLAGS="$CFLAGS -mno-avx"
|
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-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
|
2006-02-23 17:10:28 +00:00
|
|
|
}
|