mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
testing/audacity: new aport
Multitrack audio editor http://audacity.sourceforge.net
This commit is contained in:
parent
4ddc7b077a
commit
626d0dde97
48
testing/audacity/APKBUILD
Normal file
48
testing/audacity/APKBUILD
Normal file
@ -0,0 +1,48 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=audacity
|
||||
pkgver=1.3.13
|
||||
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.sf.net/sourceforge/audacity/audacity-minsrc-$pkgver-beta.tar.bz2"
|
||||
|
||||
_builddir="$srcdir"/audacity-src-$pkgver-beta
|
||||
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="57be7fadb8c8dd17b8462c7ac1561d03 audacity-minsrc-1.3.13-beta.tar.bz2"
|
||||
Loading…
x
Reference in New Issue
Block a user