mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 15:37:14 +08:00
37 lines
793 B
Bash
37 lines
793 B
Bash
|
# Include global configuration
|
||
|
source ../kdeapps.conf
|
||
|
|
||
|
pkgname=sweeper
|
||
|
pkgver=${_kdever}
|
||
|
pkgrel=1
|
||
|
pkgdesc='System Cleaner'
|
||
|
url='https://kde.org/applications/utilities/sweeper'
|
||
|
arch=(x86_64)
|
||
|
license=(GPL LGPL FDL)
|
||
|
depends=(kactivities-stats kio)
|
||
|
makedepends=(extra-cmake-modules kdoctools)
|
||
|
groups=(kde-applications kdeutils)
|
||
|
conflicts=(kdeutils-sweeper)
|
||
|
replaces=(kdeutils-sweeper)
|
||
|
provides=(kdeutils-sweeper)
|
||
|
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
|
||
|
}
|