diff options
author | James Meyer <james.meyer@operamail.com> | 2009-08-30 14:52:42 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-08-30 14:52:42 (GMT) |
commit | 39f7114420e01a1ee8cae488164ff2ab3504350a (patch) | |
tree | 7390c2303fe547544fa1ac45d8dfda2086b49ee3 /abs/extra-testing/xulrunner | |
parent | 7c38541dbbbead64f04641065ab038ed545190bd (diff) | |
parent | 3aef682afa6426e44abaceb56e510af8dcf7bd94 (diff) | |
download | linhes_pkgbuild-39f7114420e01a1ee8cae488164ff2ab3504350a.zip linhes_pkgbuild-39f7114420e01a1ee8cae488164ff2ab3504350a.tar.gz linhes_pkgbuild-39f7114420e01a1ee8cae488164ff2ab3504350a.tar.bz2 |
Merge branch 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-PKGBUILD
* 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-PKGBUILD:
rrdtool: add ruby dep to resolve RRD.so dependency
python-netifaces: chmod -x on info files
xulrunner: add libs to ld.so.conf in install script
perl-text-kakasi: fix kakasi dependency
pyorbit: rebuild to fix libpython2.5.so.1.0 => not found
xine-lib: upgrade to 1.1.16.3 and rebuild to fix missing shared lib references
local-website:updated link for f@h.
Folding@Home:Updates for webpage.
foldingathome:bump. gd:bump for libjpeg
foldingathome: change location to /myth/foldingathome/
shepherd: update to latest from http://www.whuffy.com/shepherd/shepherd
foldingathome: git add run script
LinHES-config mythinstall foldingathome: initial inclusion of Folding@home
Diffstat (limited to 'abs/extra-testing/xulrunner')
-rw-r--r-- | abs/extra-testing/xulrunner/PKGBUILD | 3 | ||||
-rw-r--r-- | abs/extra-testing/xulrunner/xulrunner.install | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/abs/extra-testing/xulrunner/PKGBUILD b/abs/extra-testing/xulrunner/PKGBUILD index 84d6734..da6d8cd 100644 --- a/abs/extra-testing/xulrunner/PKGBUILD +++ b/abs/extra-testing/xulrunner/PKGBUILD @@ -4,7 +4,7 @@ pkgname=xulrunner pkgver=1.9.1.1 _ffoxver=3.5.1 -pkgrel=2 +pkgrel=5 pkgdesc="Mozilla Runtime Environment" arch=(i686 x86_64) license=('MPL' 'GPL' 'LGPL') @@ -18,6 +18,7 @@ source=(http://releases.mozilla.org/pub/mozilla.org/firefox/releases/${_ffoxver} mozconfig) md5sums=('18169e189785d680827d4fce94524449' '6509d12e6b17bfc51c09e1dc35259035') +install=xulrunner.install build() { cd ${startdir}/src/mozilla-1.9.1 diff --git a/abs/extra-testing/xulrunner/xulrunner.install b/abs/extra-testing/xulrunner/xulrunner.install new file mode 100644 index 0000000..0b4cf9c --- /dev/null +++ b/abs/extra-testing/xulrunner/xulrunner.install @@ -0,0 +1,11 @@ +post_install() { + # Ensure that the ld.so.conf file contains the xulrunner libs. + cp -f /etc/ld.so.conf /tmp/ld.so.conf + grep -v xulrunner /tmp/ld.so.conf > /etc/ld.so.conf + echo /usr/lib/xulrunner-1.9.1.1 >> /etc/ld.so.conf + /sbin/ldconfig +} + +post_upgrade() { + post_install $* +} |