PKGBUILDs/community/snd/PKGBUILD

66 lines
2.2 KiB
Bash
Raw Normal View History

2018-02-19 16:19:04 +00:00
# Maintainer: David Runge <dave@sleepmap.de>
2018-03-23 18:08:24 +00:00
# Contributor: Ray Rashif <schiv@archlinux.org>
2011-12-05 19:01:04 +00:00
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
2012-08-26 16:14:51 +00:00
# Contributor: see .contrib
2011-12-05 19:01:04 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - build with pulseaudio as sound server, not jack (x86 asm)
pkgname=snd
2019-10-13 20:59:26 +00:00
pkgver=19.8
2019-09-02 19:00:23 +00:00
pkgrel=1
2011-12-05 19:01:04 +00:00
pkgdesc="An advanced sound editor"
2018-01-24 13:53:37 +00:00
arch=('x86_64')
2018-02-19 16:19:04 +00:00
url="https://ccrma.stanford.edu/software/snd/"
2014-01-02 09:58:46 +00:00
license=('custom:free')
2018-06-05 18:02:52 +00:00
groups=('pro-audio')
2019-09-02 19:00:23 +00:00
depends=('alsa-lib' 'cairo' 'fftw' 'glibc' 'glib2' 'gmp' 'gsl' 'gtk3' 'pulseaudio'
'libmpc' 'libsamplerate' 'pango' 'ruby')
makedepends=('flac' 'gendesk' 'glu' 'ladspa' 'libpulse' 'libxpm' 'mpg123'
2018-02-19 16:19:04 +00:00
'openmotif' 'speex' 'timidity++' 'vorbis-tools' 'wavpack')
optdepends=('wavpack: For wav support'
'flac: For flac support'
'speex: For speex support'
'mpg123: For MPEG support'
'timidity++: For MIDI to WAVE support'
'vorbis-tools: For OGG support')
source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz")
2019-10-13 20:59:26 +00:00
sha512sums=('466fc1466e64588a0552255e3b02d589a42ddb8eb3339a9599704f24d52d08ee2813f1aa206974403cd2b63a33737eb08eb4a7ed6025d1090551770958785237')
2019-07-30 18:13:03 +00:00
prepare() {
cd "${pkgname}-${pkgver}"
# create XDG desktop file, as the default is broken
gendesk -f -n \
--pkgname "${pkgname}" \
--name "${pkgname}" \
--exec "${pkgname}" \
--genericname "Sound Editor" \
--categories "AudioVideo;Audio"
}
2011-12-05 19:01:04 +00:00
build() {
2018-02-19 16:19:04 +00:00
cd "${pkgname}-${pkgver}"
2011-12-05 19:01:04 +00:00
./configure --prefix=/usr \
--with-alsa \
2018-02-19 16:19:04 +00:00
--with-gmp \
2012-08-26 16:14:51 +00:00
--with-gtk \
--with-ladspa \
2018-02-19 16:19:04 +00:00
--with-pulseaudio \
--with-ruby
2011-12-05 19:01:04 +00:00
make
}
package() {
2018-02-19 16:19:04 +00:00
cd "${pkgname}-${pkgver}"
make prefix="${pkgdir}/usr" install
2019-07-30 18:13:03 +00:00
install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications/"
install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
2018-11-26 19:40:26 +00:00
# docs
install -vDm 644 {{HISTORY,README}.Snd,NEWS} \
-t "${pkgdir}/usr/share/doc/${pkgname}/"
install -vDm 644 *.html -t "${pkgdir}/usr/share/doc/${pkgname}/html"
install -vDm 644 pix/*.png -t "${pkgdir}/usr/share/doc/${pkgname}/html/pix"
2011-12-05 19:01:04 +00:00
}
# vim:set ts=2 sw=2 et: