mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-11 19:02:42 +01:00
54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=audacity
|
|
pkgver=2.0.4
|
|
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://audacity.googlecode.com/files/audacity-minsrc-$pkgver.tar.xz"
|
|
|
|
_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 \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--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="739e4e12a8a4f30e305f04493099ff5b audacity-minsrc-2.0.4.tar.xz"
|
|
sha256sums="772ba2336fc3f2c7b6e0dfa927b91143c987db14201e7bc523fa4f4fa313895e audacity-minsrc-2.0.4.tar.xz"
|
|
sha512sums="14bd174364cd0bcc9e975fbf21d5d484ce72e56c8a0dc175bf3c4da5abfe5ba29b8a49575103fb19b7d8913f30f06448f67616045ceb33509317a74f5be3ec34 audacity-minsrc-2.0.4.tar.xz"
|