mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
70 lines
2.6 KiB
Bash
70 lines
2.6 KiB
Bash
# Maintainer: David Runge <dvzrv@archlinux.org>
|
|
# Contributor: Ray Rashif <schiv@archlinux.org>
|
|
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - build with pulseaudio as sound server, not jack (x86 asm)
|
|
|
|
pkgname=snd
|
|
pkgver=20.7
|
|
pkgrel=1
|
|
pkgdesc="An advanced sound editor"
|
|
arch=('x86_64')
|
|
url="https://ccrma.stanford.edu/software/snd/"
|
|
license=('custom:free')
|
|
groups=('pro-audio')
|
|
depends=('cairo' 'gdk-pixbuf2' 'glibc' 'gmp' 'gsl' 'libmpc' 'mpfr' 'ruby' 'pulseaudio')
|
|
# TODO: maybe replace mpg123 with mpg321
|
|
makedepends=('alsa-lib' 'fftw' 'flac' 'gendesk' 'glib2' 'glu' 'gtk3'
|
|
'ladspa' 'libpulse' 'libsamplerate' 'libxpm' 'mpg123' 'openmotif' 'pango'
|
|
'speex' 'timidity++' 'vorbis-tools' 'wavpack')
|
|
optdepends=('wavpack: For wav support'
|
|
'flac: For flac support'
|
|
'speex: For speex support'
|
|
'mpg123: For MPEG support'
|
|
'pulseaudio: For pulseaudio 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")
|
|
sha512sums=('bc45a6357588759bd7b19152e2ae621e8f084df916a1b1cc890a1d27c1394c05b8a1083f7e0dd2258be4b36cef32a7491dca9e1546953ef2fe579b25d5e07eb9')
|
|
b2sums=('0f747bf1ba1e5915e2eab40d8bf5228a41ae22f946178c0730571cbc4a13ed06a29635149c584dc91ce544d8ea4e17a1f51a55e2f363cd65a631de4169a183d9')
|
|
|
|
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"
|
|
}
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--with-alsa \
|
|
--with-gmp \
|
|
--with-gtk \
|
|
--with-ladspa \
|
|
--with-pulseaudio \
|
|
--with-ruby
|
|
make
|
|
}
|
|
|
|
package() {
|
|
depends+=('libasound.so' 'libfftw3.so' 'libgdk-3.so' 'libgio-2.0.so'
|
|
'libglib-2.0.so' 'libgobject-2.0.so' 'libgtk-3.so'
|
|
'libpangocairo-1.0.so' 'libpango-1.0.so' 'libsamplerate.so')
|
|
cd "${pkgname}-${pkgver}"
|
|
make prefix="${pkgdir}/usr" install
|
|
install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications/"
|
|
install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
# 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"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|