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
#!/bin/sh | |
PREFIX=$1 | |
mkdir -p $PREFIX/Ardour5.app/Contents/MacOS | |
mkdir -p $PREFIX/Ardour5.app/Contents/Resources | |
sed -e "s?@ENV@??g" \ | |
-e "s?@VERSION@?5?g" \ | |
-e "s?@INFOSTRING@??g" \ | |
-e "s?@IDSUFFIX@?Ardour5?g" \ | |
-e "s?@BUNDLENAME@?Ardour5?g" \ | |
-e "s?@EXECUTABLE@?Ardour5?g" < Info.plist.in > $PREFIX/Ardour5.app/Contents/Info.plist |
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
diff --git a/gtk2_ardour/lv2_plugin_ui.cc b/gtk2_ardour/lv2_plugin_ui.cc | |
index 20f59b5..b9b382c 100644 | |
--- a/gtk2_ardour/lv2_plugin_ui.cc | |
+++ b/gtk2_ardour/lv2_plugin_ui.cc | |
@@ -438,11 +438,6 @@ LV2PluginUI::lv2ui_free() | |
remove (*_gui_widget); | |
_gui_widget = NULL; | |
} | |
- | |
- if (_inst) { |
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 python3 | |
# Try to fix library names by looking them up | |
from subprocess import check_output | |
import re | |
from os import system | |
from os.path import basename, exists | |
from sys import argv | |
from glob import glob | |
if len(argv) < 3: |

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
2015-12-12 13:54:19 +0100 | |
./waf | |
install | |
Waf: Entering directory `/private/tmp/ardour201512/ardour-4.4/build' | |
[ 1/860] cxx: libs/appleutility/AUOutputBL.cpp -> build/libs/appleutility/AUOutputBL.cpp.1.o | |
[ 2/860] cxx: libs/appleutility/AUParamInfo.cpp -> build/libs/appleutility/AUParamInfo.cpp.1.o | |
[ 3/860] cxx: libs/appleutility/CAAudioChannelLayout.cpp -> build/libs/appleutility/CAAudioChannelLayout.cpp.1.o | |
[ 4/860] cxx: libs/appleutility/CAAudioChannelLayoutObject.cpp -> build/libs/appleutility/CAAudioChannelLayoutObject.cpp.1.o |
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
--- Makefile.in.orig 2015-12-03 20:56:09.000000000 +0100 | |
+++ Makefile.in 2015-12-04 07:27:19.000000000 +0100 | |
@@ -103,16 +103,20 @@ | |
# public entry point. It's not essential, but makes a tidier library. | |
PLUGIN_LDFLAGS = $(DYNAMIC_LDFLAGS) -Wl,--version-script=build/vamp-plugin.map | |
- | |
-## For OS/X with g++: | |
-#DYNAMIC_LDFLAGS = -dynamiclib | |
-#PLUGIN_LDFLAGS = $(DYNAMIC_LDFLAGS) |
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
proof of concept to make Zip-file checksums more reliable | |
related to https://github.com/composer/composer/issues/2540 |
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
% Template to create an A4 handout | |
% input should be a 16:9 PDF presentation | |
\documentclass[a4paper]{article} | |
%\documentclass[a4paper]{beamer} | |
%\documentclass[a4paper]{handoutWithNotes} | |
%\pgfpagesuselayout{4 on 1 with notes}[a4paper,border shrink=5mm] | |
\usepackage{pdfpages} | |
%\AtBeginSection[] |
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
CFLAGS=-std=c99 | |
LD=$(CC) | |
all: keymapper.exe | |
keymapper.exe: main.o | |
$(LD) -o keymapper.exe $< |
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
Helper utility for php from cygwin for using with phpStorm |