2006-02-23 17:10:28 +00:00
|
|
|
# Description: Mozilla Web Browser Component
|
|
|
|
# URL: http://www.mozilla.com/firefox/
|
2010-05-13 23:34:28 +02:00
|
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
2008-06-21 13:45:28 +02:00
|
|
|
# Depends on: xulrunner
|
2006-02-23 17:10:28 +00:00
|
|
|
|
|
|
|
name=firefox
|
2010-10-28 20:55:46 +02:00
|
|
|
version=3.6.12
|
2010-11-30 14:24:39 +01:00
|
|
|
release=2
|
2009-09-17 16:57:02 +02:00
|
|
|
source=(http://releases.mozilla.org/pub/mozilla.org/$name/releases/$version/source/$name-$version.source.tar.bz2
|
2009-07-04 13:11:37 +02: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
|
|
|
|
|
2010-01-21 21:09:58 +01:00
|
|
|
cd mozilla-1.9.2
|
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/
|
2006-02-23 17:10:28 +00:00
|
|
|
}
|