mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
34 lines
672 B
Bash
34 lines
672 B
Bash
|
|
|
|
|
|
# Maintainer: Manuel Tortosa <manutortosa@chakra-project@org>
|
|
|
|
# Include global configuration
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=kde-base-artwork
|
|
pkgver=${_kdever}
|
|
pkgrel=1
|
|
pkgdesc="KDE KSplash theme"
|
|
arch=('any')
|
|
url='http://www.kde.org/'
|
|
license=('LGPL')
|
|
makedepends=('kdelibs' 'cmake' 'automoc4')
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
|
|
sha1sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d" " -f1`)
|
|
|
|
build() {
|
|
cd $srcdir
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|