summaryrefslogtreecommitdiff
path: root/testing/js/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/js/PKGBUILD')
-rw-r--r--testing/js/PKGBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/testing/js/PKGBUILD b/testing/js/PKGBUILD
deleted file mode 100644
index 97b384792..000000000
--- a/testing/js/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 130213 2011-07-04 12:50:49Z ibiru $
-# Maintainer: Ionut Biru <ibiru@archlinux.org>
-pkgname=js
-pkgver=1.8.5
-pkgrel=1
-pkgdesc="JavaScript interpreter and libraries"
-arch=(i686 x86_64)
-url="https://developer.mozilla.org/En/SpiderMonkey/1.8.5"
-license=('GPL2')
-depends=('nspr' 'gcc-libs')
-makedepends=('python2' 'zip')
-replaces=('spidermonkey')
-conflicts=('spidermonkey')
-source=(http://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gz
- js185-destdir.patch)
-md5sums=('a4574365938222adca0a6bd33329cb32'
- '364834a8391888642c53d78c3a949d94')
-build() {
- cd "$srcdir/$pkgname-$pkgver/js/src"
- patch -Np0 -i $srcdir/js185-destdir.patch
- ./configure --prefix=/usr --with-system-nspr \
- --enable-threadsafe
-
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver/js/src"
- make DESTDIR="$pkgdir" install
-
- install -m 0755 shell/js ${pkgdir}/usr/bin
-
- #cleanup
- rm -f "${pkgdir}/usr/lib/libmozjs185-1.0.a"
-}
-
-# vim:set ts=2 sw=2 et: