Browse Source

Build all plugins; Tweak mda and fomp; Cleanup

tags/v1.0
falkTX 4 years ago
parent
commit
0442d6d137
4 changed files with 9 additions and 6 deletions
  1. +4
    -4
      .travis.yml
  2. +2
    -1
      plugins/fomp.json
  3. +2
    -1
      plugins/mda.json
  4. +1
    -0
      setup/functions.sh

+ 4
- 4
.travis.yml View File

@@ -16,28 +16,28 @@ jobs:
compiler: gcc
env:
- TARGET="linux"
- PLUGINS="artyfx caps-lv2"
- PLUGINS="abgate artyfx caps fomp mda"

# linux with macOS cross-compilation
- os: linux
compiler: gcc
env:
- TARGET="macos-old"
- PLUGINS="artyfx caps-lv2"
- PLUGINS="abgate artyfx caps fomp mda"

# linux with win32 cross-compilation
- os: linux
compiler: gcc
env:
- TARGET="win32"
- PLUGINS="artyfx caps-lv2"
- PLUGINS="abgate artyfx caps fomp mda"

# linux with win64 cross-compilation
- os: linux
compiler: gcc
env:
- TARGET="win64"
- PLUGINS="artyfx caps-lv2"
- PLUGINS="abgate artyfx caps fomp mda"

before_install:
- bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh


+ 2
- 1
plugins/fomp.json View File

@@ -4,5 +4,6 @@
"version": "1.2.0",
"dlbaseurl": "http://download.drobilla.net",
"dlext": "tar.bz2",
"buildtype": "waf"
"buildtype": "waf",
"buildargs": "--lv2dir=lib/lv2"
}

+ 2
- 1
plugins/mda.json View File

@@ -4,5 +4,6 @@
"version": "1.2.4",
"dlbaseurl": "http://download.drobilla.net",
"dlext": "tar.bz2",
"buildtype": "waf"
"buildtype": "waf",
"buildargs": "--lv2dir=lib/lv2"
}

+ 1
- 0
setup/functions.sh View File

@@ -402,6 +402,7 @@ function build_waf() {
if [ ! -f "${pkgdir}/.stamp_installed" ]; then
pushd "${pkgdir}"
${python} waf install ${WAF_ARGS} --prefix="${PAWPAW_PREFIX}" ${extraconfrules} -j 1
rm -f ${PAWPAW_PREFIX}/lib/lv2/*/*.a
touch .stamp_installed
popd
fi


Loading…
Cancel
Save