blob: 2e780d91d30dd3529c38872b5644c5963e24565a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Fournit une interface API por accéder à de nombreux formats de fichiers audio
# Maintainer: NuTyX coreteam
# Packager: thierryn1 at hispeed dot ch
# URL: http://www.68k.org/~michael/audiofile
# Depends on: alsa-lib
# Run on: alsa-lib
name=audiofile
version=0.3.4
release=1
source=(http://download.gnome.org/sources/audiofile/${version%.*}/$name-$version.tar.xz)
build () {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|