[skip-ci] babe: added to official repositories as per #13

This commit is contained in:
Francesco Marinucci 2018-03-11 09:49:38 +00:00
parent c4f3bb19e5
commit ba63efd8de

26
babe/PKGBUILD Normal file
View File

@ -0,0 +1,26 @@
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
}