mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 08:37:19 +08:00
Adding kdevelop and kdevplatform for testing
This commit is contained in:
parent
708af45e92
commit
696a00ca03
32
kdevelop/PKGBUILD
Normal file
32
kdevelop/PKGBUILD
Normal file
@ -0,0 +1,32 @@
|
||||
# $Id: PKGBUILD 78865 2010-04-28 21:40:21Z andrea $
|
||||
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
||||
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
||||
|
||||
pkgname=kdevelop
|
||||
pkgver=4.0.0
|
||||
pkgrel=1
|
||||
pkgdesc="A C/C++ development environment for KDE"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.kdevelop.org/"
|
||||
license=('GPL')
|
||||
depends=('kdebase-workspace' 'kdevplatform')
|
||||
makedepends=('cmake' 'automoc4' 'perl')
|
||||
install=${pkgname}.install
|
||||
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
||||
md5sums=('9f63a0f68bc30d34c79f935386fb512d')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ../${pkgname}-${pkgver} \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_SKIP_RPATH=ON
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/build
|
||||
make DESTDIR=${pkgdir} install || return 1
|
||||
}
|
11
kdevelop/kdevelop.install
Normal file
11
kdevelop/kdevelop.install
Normal file
@ -0,0 +1,11 @@
|
||||
post_install() {
|
||||
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
33
kdevplatform/PKGBUILD
Normal file
33
kdevplatform/PKGBUILD
Normal file
@ -0,0 +1,33 @@
|
||||
# $Id: PKGBUILD 78864 2010-04-28 21:40:12Z andrea $
|
||||
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
||||
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
||||
|
||||
pkgname=kdevplatform
|
||||
pkgver=1.0.0
|
||||
pkgrel=1
|
||||
pkgdesc="A C/C++ development platform for KDE"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.kdevelop.org/"
|
||||
license=('GPL')
|
||||
depends=('kdelibs' 'boost' 'subversion' 'commoncpp2')
|
||||
optdepends=("kdesdk-kompare: difference checking")
|
||||
makedepends=('cmake' 'automoc4')
|
||||
install=${pkgname}.install
|
||||
source=("http://download.kde.org/stable/kdevelop/4.0.0/src/${pkgname}-${pkgver}.tar.bz2")
|
||||
md5sums=('0aa7a6d207d5675ed31ceeacfdda7a69')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ../${pkgname}-${pkgver} \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_SKIP_RPATH=ON
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/build
|
||||
make DESTDIR=${pkgdir} install || return 1
|
||||
}
|
11
kdevplatform/kdevplatform.install
Normal file
11
kdevplatform/kdevplatform.install
Normal file
@ -0,0 +1,11 @@
|
||||
post_install() {
|
||||
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
Loading…
Reference in New Issue
Block a user