20 lines
534 B
Plaintext
20 lines
534 B
Plaintext
|
# Description: An open-source sound editor.
|
||
|
# URL: http://audacity.sourceforge.net/
|
||
|
# Maintainer: Daniel Walpole, daniel at walpole dot id dot a
|
||
|
# Depends on: wxgtk, libogg, libmad, lame
|
||
|
|
||
|
name=audacity
|
||
|
version=1.2.4b
|
||
|
release=2
|
||
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-src-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-src-$version
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make prefix=$PKG/usr install
|
||
|
rm -rf $PKG/usr/share/{doc,locale}
|
||
|
install -D -m 0644 images/AudacityLogo48x48.xpm \
|
||
|
$PKG/usr/share/icons/${name}48x48.xpm
|
||
|
}
|