opt/firefox/Pkgfile

44 lines
1.2 KiB
Plaintext
Raw Normal View History

# Description: The Mozilla Firefox browser
# 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
name=firefox
2011-10-02 23:23:36 +02:00
version=7.0.1
2011-09-28 12:20:23 +02:00
release=1
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
mozconfig coreconf-linux3.patch)
2008-06-21 13:45:28 +02: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
cd mozilla-release
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/
cp -fL js/src/nanojit/Native{i386,X64}.h $PKG/usr/include/firefox/
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
}