# Maintainer: Ben Alex # Contributor: Jon Wiersma # Contributor: bgh pkgname=ib-tws pkgver=10.28.1i pkgrel=1 epoch=1 pkgdesc='Electronic trading platform from discount brokerage firm Interactive Brokers' arch=('x86_64') url="http://interactivebrokers.com/" license=('custom') backup=('etc/ib-tws.conf' 'etc/ib-gw.conf') depends=(alsa-lib at-spi2-core bash cairo fontconfig freetype2 gcc-libs gdk-pixbuf2 glib2 glibc gtk3 libgl libx11 libxext libxi libxrender libxtst libxxf86vm pango) optdepends=(ffmpeg3.4) makedepends=(libarchive findutils sed) source=('LICENSE' 'ib-tws' 'ib-tws.conf' 'ib-tws.desktop' 'ib-gw' 'ib-gw.conf' 'ib-gw.desktop' "tws-${pkgver}-standalone-linux-x64.sh"::'https://download2.interactivebrokers.com/installers/tws/latest-standalone/tws-latest-standalone-linux-x64.sh') sha256sums=('4b65b33dc88d77fef6e7ba1bdc1ae88b149296d3e1eb87db251bfcdf119a1f22' 'e23256d8948a2a1adf7d69d99909738888b7d8a0adbd81578543312f1f509f66' 'b359c8b5ccc7d884316ba9c88395450ff3a5dfd6af376741f091f837a5db7c26' '3a45eb7d43c0b7be2babc3fb0c83d723db2676eb1b608ecefc2f1415be8d7a62' '62fbd49b8c7fb5d4ae7491ca2b9072d42bbe589a2b9f0e14d09d1bf1177a3c46' '21070fa89c9053dff06ba799b6f9838bfd5ff209fd8dd710c5a97c3fc684af44' '9f74a204c45d47f551861cb231de89f2536f9966942da41f95d8f0ce5bcd13a4' '4e1f532d5831fbb07f16ccf28e86eb13fa36fbe1a3bb29aa5b669289c590a3f7') build() { cd ${srcdir} rm -rf ${srcdir}/target ${srcdir}/jre ${srcdir}/*.jar mkdir ${srcdir}/target ${srcdir}/jre chmod +x tws-${pkgver}-standalone-linux-x64.sh ./tws-${pkgver}-standalone-linux-x64.sh -q -dir ${srcdir}/target echo "Attempting to locate the Install4J-compatible Java installation" if grep -q -e "Install file.*/java;" ${srcdir}/target/.install4j/installation.log; then echo "Installer script indicates Java was installed by Install4j; finding log entry for full path" BUNDLED_JRE_LOCATION=$(grep -e "Install file.*/java;" ${srcdir}/target/.install4j/installation.log | head -n 1 | cut -d ';' -f 1|sed -e 's/ .*Install file\: //g'|sed 's/\/bin\/java//') if [ -z "${BUNDLED_JRE_LOCATION}" ]; then echo "Could not find bundled JRE installation entry in Install4J log; unable to proceed" exit 1 fi echo "Java installed by Install4J at ${BUNDLED_JRE_LOCATION}" else echo "Install4J log did not install Java; attempting to locate a previous Java installation it re-used" LOG_JRE_LOCATION=$(grep java.home ${srcdir}/target/.install4j/installation.log | head -n 1 | cut -d '=' -f 2 | sed 's/\.\.\.//g') if [ -z "${LOG_JRE_LOCATION}" ]; then echo "Install4J log did not provide a java.home; unable to proceed" exit 1 fi echo "Previous Install4J-installed Java reported in log as ${LOG_JRE_LOCATION}" CANONICALIZED_JRE_LOCATION=$(echo ${LOG_JRE_LOCATION}*) echo "Canonicalized path resolved to ${CANONICALIZED_JRE_LOCATION}" FIND_OUTPUT=$(find ${CANONICALIZED_JRE_LOCATION} -path '*/bin/java' | head -n 1) echo "Search for Java result: $FIND_OUTPUT" BUNDLED_JRE_LOCATION=$(echo ${FIND_OUTPUT} | sed 's/\(.*\)\/bin\/java/\1/') echo "Final Java installation directory resolved to ${BUNDLED_JRE_LOCATION}" fi if [ -f "${BUNDLED_JRE_LOCATION}/bin/java" ]; then echo "Confirmed java in ${BUNDLED_JRE_LOCATION}" else echo "Cannot find java; last tried ${BUNDLED_JRE_LOCATION}" exit 1 fi # copy the bundled JRE (do not move it as other install4j applications may be sharing it) cp -r "${BUNDLED_JRE_LOCATION}"/* ${srcdir}/jre mv ${srcdir}/target/jars/*.jar ${srcdir} rm -f "${HOME}"/Desktop/Trader\ Workstation*.desktop "${HOME}"/.local/share/applications/install4j_*-tws.desktop # icons bsdtar --extract --include trader/common/images/ibkr_icon_w12.32_h24.svg --strip-components=3 \ --to-stdout --file jts4launch-*.jar | tee ib-tws.svg ib-gw.svg sed --in-place --expression='s/{fill: #911421;}/{fill: #0d0d0d;}/' \ --expression='s/{fill: #d81222;}/{fill: #161616;}/' ib-gw.svg # recolor gw icon to differentiate } package() { cd ${srcdir} mkdir -p ${pkgdir}/usr/share/licenses/${pkgname} install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname} install -Dm755 ib-gw ${pkgdir}/usr/bin/ib-gw install -Dm644 ${pkgname}.conf ${pkgdir}/etc/$pkgname.conf install -Dm644 ib-gw.conf ${pkgdir}/etc/ib-gw.conf install -Dm644 ${pkgname}.desktop ${pkgdir}/usr/share/applications/${pkgname}.desktop install -Dm644 ib-gw.desktop ${pkgdir}/usr/share/applications/ib-gw.desktop mkdir -p ${pkgdir}/usr/share/icons/ install -Dm644 ib-*.svg "${pkgdir}/usr/share/icons/" mkdir -p ${pkgdir}/usr/share/${pkgname}/jre cp -R jre ${pkgdir}/usr/share/${pkgname} mkdir -p ${pkgdir}/usr/share/${pkgname}/jars install -Dm644 *.jar ${pkgdir}/usr/share/${pkgname}/jars }