2008-04-01 12:23:50 -04:00
|
|
|
# Description: Mozilla Web Browser Component
|
|
|
|
# URL: http://www.mozilla.com/firefox/
|
2008-06-21 13:44:37 +02:00
|
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
2008-06-23 19:58:37 +02:00
|
|
|
# Depends on: libidl, nss, gtk, perl, python, dbus-glib
|
2008-04-01 12:23:50 -04:00
|
|
|
|
|
|
|
name=xulrunner
|
2008-06-21 13:44:37 +02:00
|
|
|
version=1.9
|
2008-06-27 19:28:40 +02:00
|
|
|
release=3
|
2008-06-21 13:44:37 +02:00
|
|
|
source=(http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.0/source/firefox-3.0-source.tar.bz2
|
|
|
|
mozconfig)
|
2008-04-01 12:23:50 -04:00
|
|
|
|
|
|
|
build() {
|
|
|
|
export MOZ_CO_PROJECT="xulrunner"
|
|
|
|
export XCFLAGS="$CFLAGS"
|
|
|
|
|
|
|
|
cd mozilla
|
2008-06-27 19:28:40 +02:00
|
|
|
|
|
|
|
# make configure accept our version of sqlite
|
|
|
|
sed -i -e 's/^SQLITE_VERSION=3.5.4$/SQLITE_VERSION=3.5/' configure
|
|
|
|
|
2008-06-21 13:44:37 +02:00
|
|
|
sed -e "s/#CFLAGS#/$CFLAGS/g" \
|
|
|
|
-e "s/#MAKEFLAGS#/$MAKEFLAGS/g" \
|
|
|
|
$SRC/mozconfig > .mozconfig
|
2008-06-27 19:28:40 +02:00
|
|
|
|
2008-06-21 13:44:37 +02:00
|
|
|
./configure
|
|
|
|
make
|
2008-04-01 12:23:50 -04:00
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|