This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash +xe | |
| # Assumes a sane-ish system with git and wget | |
| pacman -S --noconfirm avahi libao openssl perl-crypt-openssl-rsa perl-io-socket-inet6 perl-libwww | |
| wget https://aur.archlinux.org/packages/pe/perl-net-sdp/perl-net-sdp.tar.gz | |
| tar -zxvf perl-net-sdp.tar.gz | |
| pushd perl-net-sdp | |
| makepkg -s --asroot | |
| pacman -U perl-net-sdp-*.pkg.tar.xz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env sh | |
| KICAD_SOURCE_FOLDER=kicad | |
| KICAD_BIN_FOLDER=kicad-bin | |
| WX_PYTHON_SOURCE_FOLDER=wxPython | |
| WX_PYTHON_BIN_FOLDER=wxPython-bin | |
| OSX_VERSION=10.10 | |
| ############################################# | |
| START_DIR=`pwd` |