core/liblastfm/PKGBUILD

35 lines
879 B
Bash

#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
pkgname=liblastfm
pkgver=0.3.3
pkgrel=6
pkgdesc="A collection of libraries to help you integrate Last.fm services into your rich desktop software"
arch=('i686' 'x86_64')
url="http://github.com/mxcl/liblastfm/"
license=('GPL')
depends=('libsamplerate' 'fftw' 'qt' 'openssl')
makedepends=('ruby')
options=('!libtool')
source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/mxcl/${pkgname}/tarball/${pkgver}"
'no-ftools.patch')
sha1sums=('f2e9705c9c2cbeaa14f46da9bd35ab36fe710392'
'9bfaf116ec4abb58dc7e6f4f516e4c766fccb57a')
build() {
cd ${srcdir}/mxcl-${pkgname}-1c739eb
patch -Np1 -i ${srcdir}/no-ftools.patch
ruby configure --release --prefix /usr
make
}
package(){
cd ${srcdir}/mxcl-${pkgname}-1c739eb
make DESTDIR=${pkgdir} install
}