[arch-commits] Commit in audacity/repos/community-x86_64 (PKGBUILD PKGBUILD)
David Runge
dvzrv at archlinux.org
Sat May 23 21:27:33 UTC 2020
Date: Saturday, May 23, 2020 @ 21:27:32
Author: dvzrv
Revision: 632591
archrelease: copy trunk to community-x86_64
Added:
audacity/repos/community-x86_64/PKGBUILD
(from rev 632590, audacity/trunk/PKGBUILD)
Deleted:
audacity/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 137 +++++++++++++++++++++++++++++++------------------------------
1 file changed, 70 insertions(+), 67 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-05-23 21:27:23 UTC (rev 632590)
+++ PKGBUILD 2020-05-23 21:27:32 UTC (rev 632591)
@@ -1,67 +0,0 @@
-# Maintainer: David Runge <dvzrv at archlinux.org>
-# Contributor: Eric Bélanger <eric at archlinux.org>
-
-pkgname=audacity
-pkgver=2.4.1
-pkgrel=2
-epoch=1
-pkgdesc="A program that lets you manipulate digital audio waveforms"
-arch=('x86_64')
-url="https://audacityteam.org"
-license=('GPL2' 'CCPL')
-groups=('pro-audio')
-# upstream hard codes/vendors portaudio/portmidi
-# https://github.com/audacity/audacity/issues/522
-depends=('expat' 'gcc-libs' 'gdk-pixbuf2' 'glibc' 'libmad'
-'libsoxr' 'soundtouch' 'wxgtk3')
-makedepends=('alsa-lib' 'cmake' 'ffmpeg' 'flac' 'glib2' 'gtk3' 'jack' 'lame'
-'libid3tag' 'libogg' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'portsmf' 'suil'
-'twolame' 'vamp-plugin-sdk')
-optdepends=('ffmpeg: additional import/export capabilities')
-source=("https://github.com/${pkgname}/${pkgname}/archive/Audacity-${pkgver}.tar.gz")
-sha512sums=('2f0a3f7e24dce91ae520e285dbb05778b68e0fe37b8ded55ac568b5f8135069951b3986764adc5d0791c165b283a3c19596f1d6f51ba17028e0eb04558c63f25')
-
-prepare() {
- mv -v "${pkgname}-Audacity-${pkgver}" "${pkgname}-${pkgver}"
- cd "${pkgname}-${pkgver}"
- autoreconf -vfi
-}
-
-build() {
- cd "${pkgname}-${pkgver}"
- # the cmake setup is still more complicated and error-prone than the
- # autotools setup:
- # https://github.com/audacity/audacity/issues/519
- # https://github.com/audacity/audacity/issues/520
- # https://github.com/audacity/audacity/issues/521
- WX_CONFIG=wx-config-gtk3 ./configure --prefix="/usr" \
- --with-libsndfile="system" \
- --with-ffmpeg="system" \
- --with-expat="system" \
- --with-lame="system" \
- --with-libsoxr="system" \
- --with-portaudio \
- --with-portmidi \
- --with-libflac \
- --with-libid3tag \
- --with-libsamplerate \
- --with-sbsms \
- --with-soundtouch \
- --with-libtwolame \
- --with-libvorbis \
- --with-lv2
- make
-}
-
-package() {
- depends+=('libFLAC.so' 'libFLAC++.so' 'libasound.so' 'libgdk-3.so'
- 'libglib-2.0.so' 'libgobject-2.0.so' 'libgtk-3.so' 'libid3tag.so'
- 'libjack.so' 'liblilv-0.so' 'libogg.so' 'libsndfile.so' 'libsuil-0.so'
- 'libtwolame.so' 'libvamp-hostsdk.so' 'libvorbis.so' 'libvorbisenc.so'
- 'libvorbisfile.so' 'libportSMF.so')
- cd "${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
- # install libnyquist plugins, missing since 2.4.0:
- # https://bugs.archlinux.org/task/66733
- install -vDm 644 plug-ins/*.ny -t "${pkgdir}/usr/share/${pkgname}/plug-ins"
-}
Copied: audacity/repos/community-x86_64/PKGBUILD (from rev 632590, audacity/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-05-23 21:27:32 UTC (rev 632591)
@@ -0,0 +1,70 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: Eric Bélanger <eric at archlinux.org>
+
+pkgname=audacity
+pkgver=2.4.1
+pkgrel=3
+epoch=1
+pkgdesc="A program that lets you manipulate digital audio waveforms"
+arch=('x86_64')
+url="https://audacityteam.org"
+license=('GPL2' 'CCPL')
+groups=('pro-audio')
+# upstream hard codes/vendors portaudio/portmidi
+# https://github.com/audacity/audacity/issues/522
+depends=('expat' 'gcc-libs' 'gdk-pixbuf2' 'glibc' 'libmad'
+'libsoxr' 'soundtouch' 'wxgtk3')
+makedepends=('alsa-lib' 'cmake' 'ffmpeg' 'flac' 'glib2' 'gtk3' 'jack' 'lame'
+'libid3tag' 'libogg' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'portsmf' 'suil'
+'twolame' 'vamp-plugin-sdk')
+optdepends=('ffmpeg: additional import/export capabilities')
+source=("https://github.com/${pkgname}/${pkgname}/archive/Audacity-${pkgver}.tar.gz")
+sha512sums=('2f0a3f7e24dce91ae520e285dbb05778b68e0fe37b8ded55ac568b5f8135069951b3986764adc5d0791c165b283a3c19596f1d6f51ba17028e0eb04558c63f25')
+
+prepare() {
+ mv -v "${pkgname}-Audacity-${pkgver}" "${pkgname}-${pkgver}"
+ cd "${pkgname}-${pkgver}"
+ autoreconf -vfi
+}
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ # the cmake setup is still more complicated and error-prone than the
+ # autotools setup:
+ # https://github.com/audacity/audacity/issues/519
+ # https://github.com/audacity/audacity/issues/520
+ # https://github.com/audacity/audacity/issues/521
+ WX_CONFIG=wx-config-gtk3 ./configure --prefix="/usr" \
+ --with-libsndfile="system" \
+ --with-ffmpeg="system" \
+ --with-expat="system" \
+ --with-lame="system" \
+ --with-libsoxr="system" \
+ --with-portaudio \
+ --with-portmidi \
+ --with-libflac \
+ --with-libid3tag \
+ --with-libsamplerate \
+ --with-sbsms \
+ --with-soundtouch \
+ --with-libtwolame \
+ --with-libvorbis \
+ --with-lv2
+ make
+}
+
+package() {
+ depends+=('libFLAC.so' 'libFLAC++.so' 'libasound.so' 'libgdk-3.so'
+ 'libglib-2.0.so' 'libgobject-2.0.so' 'libgtk-3.so' 'libid3tag.so'
+ 'libjack.so' 'liblilv-0.so' 'libogg.so' 'libsndfile.so' 'libsuil-0.so'
+ 'libtwolame.so' 'libvamp-hostsdk.so' 'libvorbis.so' 'libvorbisenc.so'
+ 'libvorbisfile.so' 'libportSMF.so')
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ # install libnyquist plugins, missing since 2.4.0:
+ # https://bugs.archlinux.org/task/66733
+ install -vDm 644 plug-ins/*.ny -t "${pkgdir}/usr/share/${pkgname}/plug-ins"
+ # install missing *.lsp files for nyquist plugins, missing since 2.4.0:
+ # https://bugs.archlinux.org/task/66739
+ install -vDm 644 nyquist/*.lsp -t "${pkgdir}/usr/share/${pkgname}/nyquist"
+}
More information about the arch-commits
mailing list