imported elisa fix #54 [skip-ci]

This commit is contained in:
almack 2018-06-06 22:46:05 +02:00
parent 3057f856ab
commit 22d0e28542

30
elisa/PKGBUILD Normal file
View File

@ -0,0 +1,30 @@
pkgname=elisa
pkgver=0.1.1
pkgrel=1
pkgdesc='A simple music player aiming to provide a nice experience for its users'
url='https://community.kde.org/Elisa'
arch=(x86_64)
license=(LGPL3)
depends=(baloo qt5-quickcontrols qt5-quickcontrols2 qt5-graphicaleffects kcmutils) # upnp-player-qt
makedepends=(extra-cmake-modules kdoctools)
source=("https://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
sha256sums=('3ca7dce9092de422cea82f37fa16613e5aa969cfdae016dce87d38a46d8c463b'
'SKIP')
validpgpkeys=(267BF70F7905C2723B0243267D0F74F05C22F553) # Matthieu Gallien <matthieu_gallien@yahoo.fr>
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../$pkgname-$pkgver \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_TESTING=OFF
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}