mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 09:52:13 +08:00
cb3d877456
new wxgtk version 3.0
30 lines
914 B
Bash
30 lines
914 B
Bash
pkgname=audacity
|
|
pkgver=2.0.5
|
|
pkgrel=5
|
|
pkgdesc="A program that lets you manipulate digital audio waveforms"
|
|
arch=('x86_64')
|
|
url="http://audacity.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('libvorbis' 'libmad' 'libid3tag' 'wxgtk2.8' 'libsamplerate' 'lame'
|
|
'hicolor-icon-theme' 'shared-mime-info' 'desktop-file-utils' 'redland'
|
|
'jack' 'soundtouch' 'ffmpeg-compat')
|
|
makedepends=('zip' 'python' 'pkgconfig')
|
|
options=('!makeflags')
|
|
install="${pkgname}.install"
|
|
source=("http://audacity.googlecode.com/files/${pkgname}-minsrc-${pkgver}.tar.xz")
|
|
sha256sums=('e287541dd017f523fd9a06d5140b8f72fe9a0450709de7c398baffa106db2b79')
|
|
|
|
build() {
|
|
cd ${pkgname}-src-${pkgver}
|
|
WX_CONFIG=/usr/bin/wx-config-2.8 \
|
|
PKG_CONFIG_PATH+="/usr/lib/ffmpeg-compat/pkgconfig" \
|
|
./configure --prefix=/usr \
|
|
--enable-unicode
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-src-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|