summaryrefslogtreecommitdiffstats
path: root/extra/xulrunner/Pkgfile
blob: 2616f54a4f53a2ae1bcd1f606bc61e129b90d2b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Description: Paquet nécessaire pour certains plugins de Firefox
# URL: http://xulfr.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: hunspell, xorg-libxt, startup-notification, mime-types, libevent, libgnomeui, python, libidl, nss, gtk, python, dbus-glib, alsa-lib, libnotify

name=xulrunner
version=1.9.2.10
release=1
source=(http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.6.9/source/firefox-3.6.10.source.tar.bz2 \
	mozconfig 
        mozilla-pkgconfig.patch
        mozilla-ps-pdf-simplify-operators.patch
        xulrunner-version.patch
        xulrunner-png14.patch)

build() {
	unset MAKEFLAGS
	unset CFLAGS
	unset CXXFLAGS

	export MOZ_CO_PROJECT="xulrunner"
	export XCFLAGS="$CFLAGS"
	cd mozilla-1.9.2
	sed -e "s/#CFLAGS#/$CFLAGS/g" \
	    -e "s/#MAKEFLAGS#/$MAKEFLAGS/g" \
	    $SRC/mozconfig > .mozconfig

	patch -Np1 -i $SRC/mozilla-ps-pdf-simplify-operators.patch
	patch -Np1 -i $SRC/mozilla-pkgconfig.patch
	patch -Np1 -i $SRC/xulrunner-version.patch
	patch -Np0 -i $SRC/xulrunner-png14.patch

	./configure --disable-necko-wifi

	sed 's@stable@unstable@' \
	-i xulrunner/installer/mozilla-js.pc.in
	echo "Requires: nspr" >>xulrunner/installer/libxul-embedding.pc.in
	make
	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
	chown -R root:root $PKG
	
}