This file contains 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
moved to a real repo for easier maintaining: | |
https://github.com/Argon-/mpv-stats |
This file contains 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
require 'formula' | |
class Juju < Formula | |
homepage 'https://juju.ubuntu.com' | |
url 'https://launchpad.net/juju-core/1.24/1.24-beta3/+download/juju-core_1.24-beta3.tar.gz' | |
sha1 '2186c1e52115db39338ca57e1d2cf6aa56f5b5b0' | |
depends_on 'go' => :build | |
patch :DATA |
This file contains 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
#!/bin/sh | |
export MPVBUNDLE="true" | |
# set the right args for the user specified standard shell | |
# to load the expected profiles and configs | |
args="-c" | |
case "$SHELL" in | |
*bash) args="-l $args";; | |
*zsh) args="-l -i $args";; | |
esac |