# Maintainer: Grey Christoforo pkgname=wingide _wingver=6.0.6 _wingrel=1 _wing_patch_lvl=1 #bump this when adding a patch pkgver=$_wingver.$_wingrel.$_wing_patch_lvl pkgrel=1 pkgdesc="Wing IDE Professional is the full-featured Python IDE for professional programmers." url="http://www.wingware.com" license=('custom') arch=('x86_64') _wingpatch=("longer-arm-timeout-6.0.6p1-all.tar" "longer-ssh-timeout-6.0.6p2-all.tar" "fix-remote-probe-6.0.6p3-all.tar" "avoid-remote-overwrite-6.0.6p4-all.tar" "fix-open-remote-sh-6.0.6p6-all.tar") _patch_url_prefix=http://wingware.com/pub/$pkgname/$_wingver/patches/ _wingpatch=( "${_wingpatch[@]/#/$_patch_url_prefix}" ) source=("http://wingware.com/pub/$pkgname/$_wingver/$pkgname-$_wingver-$_wingrel-x86_64-linux.tar.bz2" ${_wingpatch[*]}) depends=('hicolor-icon-theme' 'libpng' 'python2' 'xdg-utils') options=(!strip !emptydirs) md5sums=('5df65a288d6c3bcb448cfe0d1a250385' '78cb37932cb1e98ce81bbd6dfedbd985' 'eb7bcac8b4872989ce75f148740014de' '6ac113b4795e8eb2c2a863509d48d581' '40184285482d23ddb7733c1031e96ffd' '03272860abe8e7418df14e04e2bc2e3a') install=${pkgname}.install prepare() { cd "$srcdir/$pkgname-$_wingver-$_wingrel-x86_64-linux" sed -i 's/python/python2/' wing-install.py } package() { cd "$srcdir/$pkgname-$_wingver-$_wingrel-x86_64-linux" ./wing-install.py \ --install-binary \ --winghome "${pkgdir}/opt/${pkgname}" \ --bin-dir ${pkgdir}/usr/bin > /dev/null 2>&1 # Correct the WINGHOME environment variable sed -i "s|${pkgdir}||" ${pkgdir}/opt/${pkgname}/wingdbstub.py sed -i "s|${pkgdir}||" ${pkgdir}/opt/${pkgname}/wing # Correct ARCH environment variable sed -i 's|ARCH=`arch`|ARCH=`uname -m`|' ${pkgdir}/opt/wingide/run-wing.sh # Fix a bug in the script sed -i "s|'x86_64'\]|'x86_64' \]|" ${pkgdir}/opt/wingide/run-wing.sh # Copy over patch (if any) if [ -d ../patches ]; then cp -r ../patches ${pkgdir}/opt/${pkgname}/. fi # Correct the file permissions chown -R root:root "${pkgdir}/opt/${pkgname}" chmod +x ${pkgdir}/opt/${pkgname}/resources/linux/desktop/install-linux-desktop.sh # Install the LICENSE install -D -m 644 "${pkgdir}/opt/${pkgname}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }