2011-03-25 19:52:51 +08:00
|
|
|
#
|
2012-05-20 06:02:02 +08:00
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
2011-03-25 19:52:51 +08:00
|
|
|
#
|
2012-05-20 06:02:02 +08:00
|
|
|
# maintainer abveritas@chakra-project.org
|
2010-05-24 23:40:27 +08:00
|
|
|
|
|
|
|
pkgname=liblastfm
|
2011-03-25 19:52:51 +08:00
|
|
|
pkgver=0.3.3
|
2012-05-20 06:02:02 +08:00
|
|
|
pkgrel=6
|
2010-05-24 23:40:27 +08:00
|
|
|
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')
|
2011-03-25 19:52:51 +08:00
|
|
|
source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/mxcl/${pkgname}/tarball/${pkgver}"
|
|
|
|
'no-ftools.patch')
|
|
|
|
sha1sums=('f2e9705c9c2cbeaa14f46da9bd35ab36fe710392'
|
|
|
|
'9bfaf116ec4abb58dc7e6f4f516e4c766fccb57a')
|
2010-05-24 23:40:27 +08:00
|
|
|
|
|
|
|
build() {
|
2011-03-25 19:52:51 +08:00
|
|
|
cd ${srcdir}/mxcl-${pkgname}-1c739eb
|
2010-05-24 23:40:27 +08:00
|
|
|
|
2011-03-25 19:52:51 +08:00
|
|
|
patch -Np1 -i ${srcdir}/no-ftools.patch
|
2010-05-24 23:40:27 +08:00
|
|
|
|
2011-03-25 19:52:51 +08:00
|
|
|
ruby configure --release --prefix /usr
|
|
|
|
make
|
2010-05-24 23:40:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package(){
|
2011-03-25 19:52:51 +08:00
|
|
|
cd ${srcdir}/mxcl-${pkgname}-1c739eb
|
2010-05-24 23:40:27 +08:00
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
}
|
2011-03-25 19:52:51 +08:00
|
|
|
|