Skip to content
Snippets Groups Projects
Commit 07d72f5d authored by ab0027's avatar ab0027 💬
Browse files

Add build config for foo-yc20

parents
No related branches found
No related tags found
No related merge requests found
Pipeline #9129 failed with stages
in 1 minute and 7 seconds
---
include:
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
- https://www.opencode.net/zynthbox/gitlab-ci-tools/raw/main/zynthbox-default-ci.yml
variables:
ARCH: 'armhf'
RELEASE: 'bullseye'
SOURCE_REPO_URL: 'https://github.com/zynthian/foo-yc20.git'
SOURCE_REPO_BRANCH: ''
SOURCE_REPO_COMMIT_HASH: ''
BUILDING_ZYNTHBOX_DEPENDENCY: 1
# zynthbox-plugin-foo-yc20
Build latest foo-yc20 from source repository https://github.com/zynthian/foo-yc20.git
zynthbox-plugin-foo-yc20 (1.3.0-1-1) bullseye; urgency=medium
* Build
-- Anupam Basak <anupam.basak27@gmail.com> Fri, 03 Mar 2023 22:44:12 +0530
11
Source: zynthbox-plugin-foo-yc20
Section: misc
Priority: optional
Maintainer: Anupam Basak <anupam.basak27@gmail.com>
Build-Depends: debhelper (>= 11), zynthbox-dependency-lv2, zynthbox-dependency-faust
Standards-Version: 4.1.3
Homepage: https://github.com/zynthian/foo-yc20.git
Package: zynthbox-plugin-foo-yc20
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, zynthbox-dependency-lv2, zynthbox-dependency-faust
Description: Build zynthbox-plugin-foo-yc20 deb
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: foo-yc20
Source: https://github.com/zynthian/foo-yc20.git
diff --git a/src/faust-dsp-plugin.cpp b/src/faust-dsp-plugin.cpp
index 17a7dfb..882294f 100644
--- a/src/faust-dsp-plugin.cpp
+++ b/src/faust-dsp-plugin.cpp
@@ -49,7 +49,7 @@ class mydsp_ex : public mydsp
{
public:
mydsp_ex()
- { data.osc = NULL; }
+ { data.osc = 0; }
mydsp_user_data data;
};
diff --git a/src/faust-dsp-standalone.cpp b/src/faust-dsp-standalone.cpp
index d38c33c..57f10d8 100644
--- a/src/faust-dsp-standalone.cpp
+++ b/src/faust-dsp-standalone.cpp
@@ -49,7 +49,7 @@ class mydsp_ex : public mydsp
{
public:
mydsp_ex()
- { data.osc = NULL; }
+ { data.osc = 0; }
mydsp_user_data data;
};
fix-source.patch
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
%:
dh $@
override_dh_usrlocal:
3.0 (quilt)
# Ignore all files having `/build/` in filepath
extend-diff-ignore = "(.*\/)?build\/.*"
# Ignore all files having `/.waf/` in filepath
extend-diff-ignore = "(.*\/)?\.waf.*\/.*"
# Ignore all files having `/man/` in filepath
extend-diff-ignore = "(.*\/)?man\/.*"
# Ignore all `.wafpickle` files
extend-diff-ignore = ".*\.wafpickle.*"
# Ignore all `.lock-waf` files
extend-diff-ignore = ".*\.lock-waf.*"
# Ignore all `.pyc` pycache files
extend-diff-ignore = ".*.pyc"
# Ignore all `.gitlab-ci.yml`
extend-diff-ignore = ".gitlab-ci.yml"
# Ignore all `README` files
extend-diff-ignore = "README|README.md"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment