47 lines
1.6 KiB
Bash
47 lines
1.6 KiB
Bash
# Template file for 'JAI'
|
|
pkgname=JAI
|
|
version=1.1.3
|
|
revision=4
|
|
archs="i686 x86_64"
|
|
short_desc="Java Advanced Imaging Library - binary version"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="custom:Oracle Binary Code License"
|
|
homepage="https://java.net/projects/jai-core"
|
|
repository=nonfree
|
|
# DISTRIBUTIONREADME-jai.txt
|
|
# (e) You agree to defend and indemnify Sun and its licensors from and against
|
|
# any damages, costs, liabilities, settlement amounts and/or expenses
|
|
# (including attorneys' fees) incurred in connection with any claim, lawsuit or
|
|
# action by any third party that arises or results from the use or distribution
|
|
# of any and all Programs and/or Redistributable.
|
|
restricted=yes
|
|
ignore_elf_dirs="/usr/share/java/lib"
|
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
_arch="amd64"
|
|
_jarch=${_arch}
|
|
checksum=4bf0d26acbedc9e203059b18f8a1a7bfef0b448cb5515b8c1b530706e68eb75a
|
|
elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
|
_arch="i586"
|
|
_jarch="i386"
|
|
checksum=00e68ee1742f972e1602913afcf095e4ca49c17e2df1d2c0938ecb267d41f94f
|
|
fi
|
|
|
|
distfiles="http://download.java.net/media/jai/builds/release/1_1_3/jai-1_1_3-lib-linux-${_arch}.tar.gz"
|
|
wrksrc="jai-1_1_3"
|
|
depends="virtual?java-runtime"
|
|
|
|
do_install() {
|
|
# put jar files in place
|
|
vmkdir usr/share/java/lib/ext
|
|
vcopy "lib/jai*" usr/share/java/lib/ext
|
|
vcopy lib/mlibwrapper_jai.jar usr/share/java/lib/ext
|
|
# put the architecture dependant files in place
|
|
vmkdir usr/share/java/lib/${_jarch}
|
|
vcopy lib/libmlib_jai.so usr/share/java/lib/${_jarch}
|
|
# put the license files in place
|
|
vmkdir usr/share/licenses/${pkgname}
|
|
for _license in *.txt; do
|
|
vlicense "$_license"
|
|
done
|
|
}
|