mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 21:17:16 +08:00
34 lines
767 B
Bash
34 lines
767 B
Bash
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=kdevplatform
|
|
_pkgver=5.0.0
|
|
pkgver=5.0
|
|
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/stable/kdevelop/$_pkgver/src/$pkgname-$pkgver.tar.xz")
|
|
sha1sums=('9cefe1c2b18187c1dde5252de9ac2648f3118bae')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|