mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 04:17:17 +08:00
21 lines
540 B
Bash
21 lines
540 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=rhino
|
|
pkgver=1.7R4
|
|
pkgrel=1
|
|
pkgdesc="Open-source implementation of JavaScript written entirely in Java"
|
|
arch=('x86_64')
|
|
url="http://www.mozilla.org/rhino/"
|
|
license=('MPL' 'GPL2')
|
|
source=("https://github.com/downloads/mozilla/rhino/rhino1_7R4.zip")
|
|
md5sums=('ad67a3dff135e3a70f0c3528a2d6edf2')
|
|
|
|
build() {
|
|
cd ${srcdir}/rhino1_7R4
|
|
install -m755 -d ${pkgdir}/usr/share/java
|
|
install -m644 js.jar ${pkgdir}/usr/share/java/
|
|
}
|