blob: 55dae31ee4c3024abc5f3d790e4fdc546b129d8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Collection de librairies pour intégrer les services Last.fm dans votre bureau favori
# URL: http://www.audiocoding.com
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: fftw, qt, libsamplerate, ruby
name=liblastfm
version=0.3.0
release=1
source=(http://cdn.last.fm/src/$name-$version.tar.bz2)
build() {
cd $name-$version
sed -i "s/require 'ftools'//g" admin/*
./configure --prefix=/usr \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
}
|