From c38dfe6188112ca490090966a63faefe5ec7e9a0 Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 29 Aug 2022 13:01:02 +0000 Subject: added snes9x and php --- repo/audacity/audacity.xibuild | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 repo/audacity/audacity.xibuild (limited to 'repo/audacity/audacity.xibuild') diff --git a/repo/audacity/audacity.xibuild b/repo/audacity/audacity.xibuild new file mode 100644 index 0000000..5d54af0 --- /dev/null +++ b/repo/audacity/audacity.xibuild @@ -0,0 +1,42 @@ +#!/bin/sh + +NAME="audacity" +DESC="Multitrack audio editor" + +MAKEDEPS="make bash alsa-lib bash expat flac jack lame libid3tag libmad libogg libsndfile libvorbis soundtouch soxr taglib wxgtk3 ffmpeg automake autoconf libtool" +DEPS="" + +PKG_VER=2.3.2 +SOURCE="https://github.com/audacity/audacity/archive/Audacity-$PKG_VER.tar.gz" + +prepare () { + autoreconf -fi +} + +build () { + WX_CONFIG=wx-config-gtk3 \ + bash configure \ + --prefix="/usr" \ + --with-libsndfile="system" \ + --with-ffmpeg="system" \ + --with-expat="system" \ + --with-lame="system" \ + --with-libsoxr="system" \ + --with-portaudio \ + --with-portmidi \ + --with-libflac \ + --with-libid3tag \ + --with-libsamplerate \ + --with-sbsms \ + --with-soundtouch \ + --with-libtwolame \ + --with-libvorbis \ + --without-lv2 \ + --enable-sse + make + +} + +package () { + make DESTDIR=$PKG_DEST install +} -- cgit v1.2.1