mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
34 lines
714 B
Bash
34 lines
714 B
Bash
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=kdev-php
|
|
pkgver=4.90.91
|
|
pkgrel=1
|
|
pkgdesc="PHP language and documentation plugin for KDevelop"
|
|
arch=(i686 x86_64)
|
|
url="http://www.kdevelop.org/"
|
|
license=(GPL)
|
|
option=('debug')
|
|
depends=(kdevelop)
|
|
replaces=(kdevelop-php kdevelop-php-docs)
|
|
conflicts=(kdevelop-php kdevelop-php-docs)
|
|
provides=(kdevelop-php kdevelop-php-docs)
|
|
makedepends=(extra-cmake-modules kdoctools kdevelop-pg-qt)
|
|
source=(http://download.kde.org/unstable/kdevelop/$pkgver/src/${pkgname}-$pkgver.tar.xz)
|
|
sha1sums=('1b84ee03bfe94d14edf90304a78b7ff405935cd0')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|