opt/firefox/Pkgfile

40 lines
1.1 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
# Depends on: nss, libidl, gtk, python, alsa-lib, yasm, mesa3d
name=firefox
2012-12-01 18:30:09 +01:00
version=17.0.1
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
mozconfig)
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
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
2008-06-21 13:45:28 +02:00
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/
install -d $PKG/etc/ld.so.conf.d
echo "/usr/lib/$name" > $PKG/etc/ld.so.conf.d/$name.conf
}