62 lines
1.5 KiB
Bash
62 lines
1.5 KiB
Bash
# Template file for 'WebStorm'
|
|
pkgname=WebStorm
|
|
version=2019.3
|
|
revision=1
|
|
archs="i686 x86_64"
|
|
wrksrc="WebStorm-193.5233.80"
|
|
depends="jetbrains-jdk-bin"
|
|
short_desc="Smartest JavaScript IDE"
|
|
maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
|
|
license="custom:Commercial"
|
|
homepage="https://www.jetbrains.com/webstorm"
|
|
distfiles="https://download.jetbrains.com/webstorm/WebStorm-${version}.tar.gz"
|
|
checksum=63ffa9d500182909078356157dd4c7ee97abfc55c51bced45d71423c7230e593
|
|
repository=nonfree
|
|
restricted=yes
|
|
nopie=yes
|
|
|
|
post_extract() {
|
|
# Remove files for other CPU architectures
|
|
rm -rf bin/fsnotifier-arm
|
|
rm -rf lib/pty4j-native/linux/ppc64le
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
x86_64)
|
|
rm -rf bin/fsnotifier
|
|
rm -rf bin/fsnotifier-arm
|
|
rm -rf bin/webstorm.vmoptions
|
|
rm -rf bin/libyjpagent-linux.so
|
|
rm -rf lib/pty4j-native/linux/x86
|
|
;;
|
|
i686)
|
|
rm -rf bin/fsnotifier64
|
|
rm -rf bin/fsnotifier-arm
|
|
rm -rf bin/webstorm64.vmoptions
|
|
rm -rf bin/libyjpagent-linux64.so
|
|
rm -rf lib/pty4j-native/linux/x86_64
|
|
;;
|
|
esac
|
|
}
|
|
|
|
do_install() {
|
|
TARGET_PATH="usr/lib/${pkgname}"
|
|
|
|
vmkdir usr/bin
|
|
vmkdir ${TARGET_PATH}
|
|
|
|
local i
|
|
for i in license/* ; do
|
|
vlicense $i
|
|
done
|
|
|
|
mkdir -p /usr/lib/jvm/jbrsdk
|
|
ln -sf /usr/lib/jvm/jbrsdk ${DESTDIR}/${TARGET_PATH}/jbr
|
|
vcopy bin ${TARGET_PATH}
|
|
vcopy help ${TARGET_PATH}
|
|
vcopy lib ${TARGET_PATH}
|
|
vcopy plugins ${TARGET_PATH}
|
|
vcopy product-info.json ${TARGET_PATH}
|
|
vcopy build.txt ${TARGET_PATH}
|
|
|
|
ln -sf /${TARGET_PATH}/bin/webstorm.sh ${DESTDIR}/usr/bin/${pkgname}
|
|
}
|