blob: 89689663af813660b10d158d973f22cf2000bae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Librairie audio pour KDE4
# URL: http://carewolf.com/akode/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: alsa-lib, libmad
# Run on:
name=akode
version=2.0.2
release=2
source=(http://www.kde-apps.org/CONTENT/content-files/30375-akode-$version.tar.bz2 \
http://nutyx.meticul.eu/files/patchs/$name/gcc43.patch)
build() {
cd $name-$version
patch -Np0 -i ../gcc43.patch
./configure --prefix=/usr \
--without-flac \
--without-ffmpeg
make
make DESTDIR=$PKG install
}
|