core/liblastfm/PKGBUILD

33 lines
736 B
Bash
Raw Normal View History

2013-11-14 08:49:42 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
# contributor abveritas@chakra-project.org
2010-05-24 23:40:27 +08:00
pkgname=liblastfm
2013-11-14 08:49:42 +08:00
pkgver=1.0.8
2014-05-15 04:49:03 +08:00
pkgrel=2
pkgdesc='A Qt C++ library for the Last.fm webservices'
url="https://github.com/lastfm/liblastfm/"
license=('GPL3')
arch=('x86_64')
2014-05-15 04:47:18 +08:00
depends=('qt' 'fftw' 'libsamplerate')
makedepends=('lsb-release' 'cmake')
source=("https://github.com/lastfm/liblastfm/archive/${pkgver}.tar.gz")
2013-11-14 08:49:42 +08:00
md5sums=('5f7c1d15c0be57d73ec480f74c1d4592')
2010-05-24 23:40:27 +08:00
build() {
mkdir build
cd build
2010-05-24 23:40:27 +08:00
cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-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