mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
# Maintainer: Ram-Z <samir.benmendil[at]gmail[dot]com>
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
pkgname=js185
|
|
pkgver=1.8.5
|
|
pkgrel=1
|
|
pkgdesc="JavaScript interpreter and libraries (legacy)"
|
|
arch=(x86_64)
|
|
url="https://developer.mozilla.org/En/SpiderMonkey/1.8.5"
|
|
license=(MPL)
|
|
depends=(nspr gcc-libs)
|
|
makedepends=(python2 zip)
|
|
provides=("js=$pkgver")
|
|
conflicts=(js)
|
|
options=(!staticlibs)
|
|
source=(http://ftp.mozilla.org/pub/mozilla.org/js/$pkgname-1.0.0.tar.gz)
|
|
md5sums=('a4574365938222adca0a6bd33329cb32')
|
|
|
|
build() {
|
|
cd js-1.8.5/js/src
|
|
|
|
# _FORTIFY_SOURCE causes configure error
|
|
unset CPPFLAGS
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-system-nspr \
|
|
--enable-threadsafe
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd js-1.8.5/js/src
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm755 shell/js "$pkgdir/usr/bin/js"
|
|
find "$pkgdir"/usr/{lib/pkgconfig,include} -type f -exec chmod -x {} +
|
|
|
|
# Bad symlinks (absolute, including DESTDIR!)
|
|
cd "$pkgdir/usr/lib"
|
|
ln -sf libmozjs185.so.1.0.0 libmozjs185.so.1.0
|
|
ln -sf libmozjs185.so.1.0 libmozjs185.so
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|