-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from CICM/dev/v0.1.2
Dev/v0.1.2
- Loading branch information
Showing
14 changed files
with
142 additions
and
77 deletions.
There are no files selected for viewing
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
Submodule faust
updated
1441 files
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#! /bin/bash | ||
|
||
# Copyright (c) 2020 Albert Gräf <aggraef@gmail.com>. Distributed under the | ||
# MIT license, please check the toplevel LICENSE file for details. | ||
|
||
# Create a self-contained distribution tarball from the source, including all | ||
# the submodules. | ||
|
||
# Invoke this in the toplevel directory as `./make-dist.sh`. It will leave the | ||
# tarball as pd-faustgen-<version>.tar.gz in the toplevel directory. Temporary | ||
# data is written to the pd-faustgen-<version> directory, which is | ||
# automatically deleted afterwards. The version number is extracted from | ||
# src/faustgen_tilde.c, so make sure to keep that up-to-date. | ||
|
||
# NOTE: git and tar need to be installed to make this work. As a side-effect, | ||
# all submodules will be checked out recursively, using `git submodule update | ||
# --init --recursive`. | ||
|
||
# This may need adjusting if the file is edited and the macro name changes. | ||
version=$(grep "#define FAUSTGEN_VERSION_STR" src/faustgen_tilde.c | sed 's|^#define *FAUSTGEN_VERSION_STR *"\(.*\)".*|\1|') | ||
|
||
# Distribution basename and name of the source tarball. | ||
dist=pd-faustgen-$version | ||
src=$dist.tar.gz | ||
|
||
# Make sure that the submodules are initialized. | ||
git submodule update --init --recursive | ||
|
||
# List of submodules to include in the package. This requires git version | ||
# 1.7.8 or later to work. | ||
submodules=$(find . -mindepth 2 -name '.git' -type f -print | xargs grep -l "gitdir" | sed -e 's/^\.\///' -e 's/\.git$//') | ||
|
||
# Remove any left-over temp directory and previous tarball. | ||
rm -rf $dist $src | ||
# Grab the main source. | ||
git archive --format=tar.gz --prefix=$dist/ HEAD | tar xfz - | ||
# Grab the submodules. | ||
for x in $submodules; do (cd $dist && git -C ../$x archive --format=tar.gz --prefix=$x HEAD | tar xfz -); done | ||
|
||
# Create the source tarball. | ||
tar cfz $src $dist | ||
rm -rf $dist |
Submodule pd.build
updated
5 files
+2 −0 | pd.cmake | |
+0 −0 | x64/pd.def | |
+ − | x64/pd.lib | |
+0 −0 | x86/pd.def | |
+ − | x86/pd.lib |
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
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
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
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