desktop/babe/PKGBUILD
2018-03-11 09:49:38 +00:00

27 lines
620 B
Bash

pkgname=babe
pkgver=1.2.1
pkgrel=1
pkgdesc='A tiny music collection manager'
url='https://babe.kde.org'
arch=(x86_64)
license=(GPL3)
depends=('ki18n' 'knotifications' 'qt5-webengine' 'qt5-websockets' 'taglib' 'lcms2')
makedepends=('extra-cmake-modules' 'python3')
source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz")
sha256sums=('21c10b02a26aa1d3b831ea1f59f5e491e7a06939591e2a36d25b815651d2c7e1')
build() {
cd $pkgname-$pkgver
mkdir build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd $pkgname-$pkgver/build
make DESTDIR=$pkgdir install
}