mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-15 21:02:08 +01:00
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=audacity
|
|
pkgver=2.0.0
|
|
pkgrel=0
|
|
pkgdesc="Multitrack audio editor"
|
|
url="http://audacity.sourceforge.net"
|
|
arch="all"
|
|
license="GPLv2"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev wxgtk-dev alsa-lib-dev libsndfile-dev flac-dev
|
|
libogg-dev libvorbis-dev libsamplerate-dev expat-dev libmad-dev
|
|
libid3tag-dev taglib-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc $pkgname-lang"
|
|
source="http://downloads.sourceforge.net/audacity/audacity-fullsrc-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir"/audacity-src-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--with-libsndfile=system \
|
|
--with-libsamplerate=system \
|
|
--without-libresample \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="286a66b162f5086241e3dc2da725b687 audacity-fullsrc-2.0.0.tar.bz2"
|