mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 19:27:25 +08:00
33 lines
686 B
Bash
33 lines
686 B
Bash
# Include global configuration
|
|
source ../frameworks.conf
|
|
|
|
pkgname=breeze-icons
|
|
pkgver=${KFVersion}
|
|
pkgrel=2
|
|
pkgdesc='Breeze icon themes'
|
|
arch=('any')
|
|
url='https://projects.kde.org/projects/kde/workspace/breeze'
|
|
license=('LGPL')
|
|
groups=('kf5')
|
|
optdepends=('oxygen-icons: fallback icon theme')
|
|
makedepends=('extra-cmake-modules' 'qt5-base')
|
|
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz"{,.sig})
|
|
sha256sums=( $(getSum ${pkgname})
|
|
SKIP)
|
|
validpgpkeys=( ${KFvalidpgpkeys[@]} )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 -DBINARY_ICONS_RESOURCE=ON ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|