opt/xulrunner/Pkgfile

32 lines
853 B
Plaintext
Raw Normal View History

2008-04-01 18:23:50 +02:00
# Description: Mozilla Web Browser Component
# URL: http://www.mozilla.com/firefox/
2009-11-08 15:47:22 +01:00
# Maintainer: Fredrik Rinnestam, fredrik at rinnestam dot se
2010-01-30 22:05:27 +01:00
# Depends on: libidl, libnotify, nss, gtk, perl, python, dbus-glib, alsa-lib
2008-04-01 18:23:50 +02:00
name=xulrunner
2010-01-21 21:08:40 +01:00
version=1.9.2
2009-11-04 19:23:42 +01:00
release=1
2010-01-21 21:08:40 +01:00
source=(http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.6/source/firefox-3.6.source.tar.bz2
mozconfig)
2008-04-01 18:23:50 +02:00
build() {
export MOZ_CO_PROJECT="xulrunner"
export XCFLAGS="$CFLAGS"
2010-01-21 21:08:40 +01:00
cd mozilla-1.9.2
2008-10-31 20:12:04 +01:00
# make configure accept our version of sqlite
sed -i -e 's/^SQLITE_VERSION=3.5.9$/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-21 13:44:37 +02:00
./configure
make
2008-04-01 18:23:50 +02:00
make DESTDIR=$PKG install
install -d $PKG/etc/ld.so.conf.d
echo "/usr/lib/$name-$version" > $PKG/etc/ld.so.conf.d/$name.conf
2008-04-01 18:23:50 +02:00
}