# $Id: PKGBUILD 175971 2013-01-25 14:23:37Z andrea $ # Maintainer: # Contributor: Andrea Scarpino # Contributor: XazZ pkgname=liblastfm pkgver=1.0.6 pkgrel=1 pkgdesc="A Qt C++ library for the Last.fm webservices" arch=('i686' 'x86_64') url='https://github.com/lastfm/liblastfm/' license=('GPL') depends=('qt' 'fftw' 'libsamplerate') makedepends=('cmake') source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/lastfm/${pkgname}/tarball/${pkgver}") sha1sums=('cd84cf61d315c9739b3b65e31c2854a6b1a38630') build() { 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 build make DESTDIR="${pkgdir}" install }