moved kde-next one level up; scripts won't work otherwise

This commit is contained in:
Fabian 2014-01-18 10:43:05 +00:00
parent ca078d62f2
commit 4119b22f32
5 changed files with 0 additions and 66 deletions

View File

@ -1,32 +0,0 @@
# Contributor: Andrea Scarpino <andrea@archlinux.org>
source ../frameworks.conf
pkgname=extra-cmake-modules
pkgver=0.0.9
pkgrel=1
pkgdesc='Extra CMake modules'
arch=('any')
url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
license=('LGPL')
depends=('cmake')
source=("$KFServer/$KFVersion/${pkgname}-${pkgver}.tar.xz")
md5sums=('79cc159b2fa91507ea349dd0fd305d78')
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=$KFInstallPrefix \
-DCMAKE_BUILD_TYPE=$KFBuildType
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}

View File

@ -1,34 +0,0 @@
# Contributor: Andrea Scarpino <andrea@archlinux.org>
source ../frameworks.conf
pkgname=kapidox
pkgver=$KFVersion
pkgrel=1
pkgdesc='Frameworks API Documentation Tools'
arch=('any')
url='https://projects.kde.org/projects/frameworks/kapidox'
license=('LGPL')
makedepends=('extra-cmake-modules' 'qt5-base')
groups=('kf5')
options=("debug")
source=("$KFServer/${KFVersion}/${pkgname}-${pkgver}.tar.xz")
md5sums=('f0c2b8767f18821a149c749084e61725')
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=${KFBuildType} \
-DCMAKE_INSTALL_PREFIX=${KFInstallPrefix}
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}