mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
36 lines
773 B
Bash
36 lines
773 B
Bash
pkgname=chakra-heritage-themes
|
|
pkgver=2017.06
|
|
pkgrel=4
|
|
pkgdesc='Chakra Plasma 5 Look & Feel theme files'
|
|
url='http://www.chakralinux.org'
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
# remember to set the wallpaper name and resolution!! in plasma/heritage/metadata.desktop
|
|
depends=('plasma-framework' 'chakra-wallpapers-tulip')
|
|
makedepends=('extra-cmake-modules')
|
|
|
|
_gitsha='dbef18593d4d5268a7334bde1028e6b455e16138'
|
|
source=("git://git.chakralinux.org/heritage.git#commit=${_gitsha}")
|
|
sha256sums=('SKIP')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
cd $srcdir/heritage
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
|
|
cmake ../heritage \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|