mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-10 00:57:16 +08:00
38 lines
850 B
Bash
38 lines
850 B
Bash
# Include global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=juk
|
|
pkgver=${_kdever}
|
|
pkgrel=1
|
|
pkgdesc='A jukebox, tagger and music collection manager'
|
|
url='http://kde.org/applications/multimedia/juk/'
|
|
arch=('x86_64')
|
|
arch=(x86_64)
|
|
license=(GPL LGPL FDL)
|
|
groups=(kde-applications kdemultimedia)
|
|
depends=(kio taglib hicolor-icon-theme)
|
|
makedepends=(extra-cmake-modules kdoctools)
|
|
conflicts=(kdemultimedia-juk)
|
|
replaces=(kdemultimedia-juk)
|
|
provides=(kdemultimedia-juk)
|
|
options=('docs' 'debug')
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
|
|
'SKIP')
|
|
validpgpkeys=(${Avalidpgpkeys[@]})
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|