mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
34 lines
908 B
Bash
34 lines
908 B
Bash
pkgname=plasma5-applets-redshift-control
|
|
_name=plasma-applet-redshift-control
|
|
pkgver=1.0.10
|
|
pkgrel=2
|
|
pkgdesc="Applet for controlling redshift (screen temperature modifying)"
|
|
arch=('x86_64')
|
|
url="https://github.com/kotelnik/plasma-applet-redshift-control"
|
|
license=('GPL')
|
|
group=('plasma5-applets')
|
|
depends=('plasma-workspace' 'qt5-graphicaleffects' 'redshift')
|
|
makedepends=('extra-cmake-modules')
|
|
source=("https://github.com/kotelnik/plasma-applet-redshift-control/archive/v${pkgver}.tar.gz")
|
|
sha256sums=('7e7a3f927e870ed754c3f2124e92cc0a57432ead3f5d500917cd03bd7d5ed706')
|
|
|
|
prepare() {
|
|
cd "${_name}-${pkgver}"
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd "${_name}-${pkgver}/build"
|
|
|
|
cmake .. \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DLIB_INSTALL_DIR=lib \
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
|
}
|
|
|
|
package() {
|
|
cd "${_name}-${pkgver}"/build
|
|
|
|
make install DESTDIR="${pkgdir}"
|
|
} |