summaryrefslogtreecommitdiff
path: root/extra/liblastfm
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-01-26 00:08:39 -0800
committerroot <root@rshg054.dnsready.net>2013-01-26 00:08:39 -0800
commit7d3e94229ca9849421d263542eb2c61f64a91c10 (patch)
treea64484da5988880907feb62e68952c19724a24bd /extra/liblastfm
parentef71629a65f6e8052d66775f07b079bf08322476 (diff)
Sat Jan 26 00:08:39 PST 2013
Diffstat (limited to 'extra/liblastfm')
-rw-r--r--extra/liblastfm/PKGBUILD40
1 files changed, 20 insertions, 20 deletions
diff --git a/extra/liblastfm/PKGBUILD b/extra/liblastfm/PKGBUILD
index e7718f6b7..aa5785ce1 100644
--- a/extra/liblastfm/PKGBUILD
+++ b/extra/liblastfm/PKGBUILD
@@ -1,32 +1,32 @@
-# $Id: PKGBUILD 150615 2012-02-18 22:58:30Z pierre $
-# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# $Id: PKGBUILD 175971 2013-01-25 14:23:37Z andrea $
+# Maintainer:
+# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: XazZ <xazz.xazz [AT] googlemail.com>
pkgname=liblastfm
-pkgver=0.3.3
-pkgrel=3
-pkgdesc="A collection of libraries to help you integrate Last.fm services into your rich desktop software"
+pkgver=1.0.6
+pkgrel=1
+pkgdesc="A Qt C++ library for the Last.fm webservices"
arch=('i686' 'x86_64')
-url="http://github.com/mxcl/liblastfm/"
+url='https://github.com/lastfm/liblastfm/'
license=('GPL')
-depends=('libsamplerate' 'fftw' 'qt')
-makedepends=('ruby')
-options=('!libtool')
-source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/mxcl/${pkgname}/tarball/${pkgver}"
- 'no-ftools.patch')
-sha1sums=('f2e9705c9c2cbeaa14f46da9bd35ab36fe710392'
- 'ba344601d29091fb88123f80592359369efdf338')
+depends=('qt' 'fftw' 'libsamplerate')
+makedepends=('cmake')
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/lastfm/${pkgname}/tarball/${pkgver}")
+sha1sums=('cd84cf61d315c9739b3b65e31c2854a6b1a38630')
build() {
- cd ${srcdir}/mxcl-${pkgname}-1c739eb
-
- patch -Np1 -i ${srcdir}/no-ftools.patch
-
- ruby configure --release --prefix /usr
+ mkdir build
+ cd build
+ cmake ../lastfm-${pkgname}-5826fe6 \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+ -DBUILD_TESTS=OFF
make
}
package(){
- cd ${srcdir}/mxcl-${pkgname}-1c739eb
- make DESTDIR=${pkgdir} install
+ cd build
+ make DESTDIR="${pkgdir}" install
}