mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 09:09:47 +02:00
19 lines
562 B
YAML
19 lines
562 B
YAML
sudo: false
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libwxgtk3.0-dev
|
|
- libgtk2.0-dev
|
|
before_install:
|
|
- #sudo apt-get update -qq
|
|
- #sudo apt-get install -y libwxgtk3.0-dev libgtk2.0-dev
|
|
- git show -s --format="wxT(\"<a href=\\\"http://github.com/audacity/audacity/commit/%H\\\">%h</a> of %cd\")"
|
|
- git show -s --format="wxT(\"<a href=\\\"http://github.com/audacity/audacity/commit/%H\\\">%h</a> of %cd\")" > ./src/RevisionIdent.h
|
|
language:
|
|
- cpp
|
|
compiler:
|
|
- gcc
|
|
script:
|
|
- aclocal --install -I m4 && automake && ./configure && make
|
|
|