@@ -16,28 +16,28 @@ jobs: | |||||
compiler: gcc | compiler: gcc | ||||
env: | env: | ||||
- TARGET="linux" | - TARGET="linux" | ||||
- PLUGINS="artyfx caps-lv2" | |||||
- PLUGINS="abgate artyfx caps fomp mda" | |||||
# linux with macOS cross-compilation | # linux with macOS cross-compilation | ||||
- os: linux | - os: linux | ||||
compiler: gcc | compiler: gcc | ||||
env: | env: | ||||
- TARGET="macos-old" | - TARGET="macos-old" | ||||
- PLUGINS="artyfx caps-lv2" | |||||
- PLUGINS="abgate artyfx caps fomp mda" | |||||
# linux with win32 cross-compilation | # linux with win32 cross-compilation | ||||
- os: linux | - os: linux | ||||
compiler: gcc | compiler: gcc | ||||
env: | env: | ||||
- TARGET="win32" | - TARGET="win32" | ||||
- PLUGINS="artyfx caps-lv2" | |||||
- PLUGINS="abgate artyfx caps fomp mda" | |||||
# linux with win64 cross-compilation | # linux with win64 cross-compilation | ||||
- os: linux | - os: linux | ||||
compiler: gcc | compiler: gcc | ||||
env: | env: | ||||
- TARGET="win64" | - TARGET="win64" | ||||
- PLUGINS="artyfx caps-lv2" | |||||
- PLUGINS="abgate artyfx caps fomp mda" | |||||
before_install: | before_install: | ||||
- bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh | - bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh | ||||
@@ -4,5 +4,6 @@ | |||||
"version": "1.2.0", | "version": "1.2.0", | ||||
"dlbaseurl": "http://download.drobilla.net", | "dlbaseurl": "http://download.drobilla.net", | ||||
"dlext": "tar.bz2", | "dlext": "tar.bz2", | ||||
"buildtype": "waf" | |||||
"buildtype": "waf", | |||||
"buildargs": "--lv2dir=lib/lv2" | |||||
} | } |
@@ -4,5 +4,6 @@ | |||||
"version": "1.2.4", | "version": "1.2.4", | ||||
"dlbaseurl": "http://download.drobilla.net", | "dlbaseurl": "http://download.drobilla.net", | ||||
"dlext": "tar.bz2", | "dlext": "tar.bz2", | ||||
"buildtype": "waf" | |||||
"buildtype": "waf", | |||||
"buildargs": "--lv2dir=lib/lv2" | |||||
} | } |
@@ -402,6 +402,7 @@ function build_waf() { | |||||
if [ ! -f "${pkgdir}/.stamp_installed" ]; then | if [ ! -f "${pkgdir}/.stamp_installed" ]; then | ||||
pushd "${pkgdir}" | pushd "${pkgdir}" | ||||
${python} waf install ${WAF_ARGS} --prefix="${PAWPAW_PREFIX}" ${extraconfrules} -j 1 | ${python} waf install ${WAF_ARGS} --prefix="${PAWPAW_PREFIX}" ${extraconfrules} -j 1 | ||||
rm -f ${PAWPAW_PREFIX}/lib/lv2/*/*.a | |||||
touch .stamp_installed | touch .stamp_installed | ||||
popd | popd | ||||
fi | fi | ||||