core/liblastfm/PKGBUILD

37 lines
792 B
Bash
Raw Normal View History

2011-03-25 19:52:51 +08:00
#
# Platform Packages for Chakra, part of chakra-project.org
2011-03-25 19:52:51 +08:00
#
# maintainer abveritas@chakra-project.org
2010-05-24 23:40:27 +08:00
pkgname=liblastfm
pkgver=1.0.6
_pkgver=5826fe6
pkgrel=1
pkgdesc='A Qt C++ library for the Last.fm webservices'
url="https://github.com/lastfm/liblastfm/"
license=('GPL3')
arch=('x86_64')
depends=('qt')
makedepends=('lsb-release' 'cmake')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/lastfm/${pkgname}/tarball/${pkgver}")
md5sums=('400dd3c0f7ccb39992678c9dc1a9e48b')
2010-05-24 23:40:27 +08:00
build() {
mkdir build
cd build
2010-05-24 23:40:27 +08:00
cmake ../lastfm-${pkgname}-${_pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DBUILD_FINGERPRINT=off \
-DCMAKE_BUILD_TYPE=Release \
2011-03-25 19:52:51 +08:00
make
2010-05-24 23:40:27 +08:00
}
package() {
cd build
2010-05-24 23:40:27 +08:00
make DESTDIR=${pkgdir} install
}
2011-03-25 19:52:51 +08:00