blob: 0f146f4dd5e29ec7f08b590018aadc15bd6b44d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: A multi-purpose WAVE data processing and reporting utility
# URL: http://shnutils.freeshell.org/shntool/
# Maintainer: Erich Eckner, crux at eckner dot net
name=shntool
version=3.0.10
release=1
source=("http://shnutils.freeshell.org/shntool/dist/src/${name}-${version}.tar.gz"
'shntool-3.0.10-large-size.diff' 'shntool-3.0.10-large-times.diff')
build() {
cd ${name}-${version}
patch -Np1 < "../shntool-3.0.10-large-size.diff"
patch -Np1 < "../shntool-3.0.10-large-times.diff"
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|