mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 23:57:14 +08:00
33 lines
758 B
Bash
33 lines
758 B
Bash
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=kdevplatform
|
|
pkgver=4.90.91
|
|
pkgrel=1
|
|
pkgdesc='A C/C++ development platform for KDE'
|
|
arch=(x86_64)
|
|
url='http://www.kdevelop.org/'
|
|
license=(GPL)
|
|
option=('debug')
|
|
depends=(grantlee-qt5 hicolor-icon-theme kcmutils threadweaver kitemmodels ktexteditor knotifyconfig knewstuff libkomparediff2 qt5-webkit)
|
|
makedepends=(extra-cmake-modules boost subversion)
|
|
optdepends=('subversion: Subversion plugin')
|
|
install="$pkgname.install"
|
|
source=("http://download.kde.org/unstable/kdevelop/$pkgver/src/$pkgname-$pkgver.tar.xz")
|
|
sha1sums=('aaeaf7833ed18941d44f43e5b0d87b60ae067751')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|