remove some package

This commit is contained in:
Weng Xuetian 2015-01-14 23:29:42 +00:00
parent 06487b5880
commit e8a21849f5
4 changed files with 0 additions and 139 deletions

View File

@ -1,42 +0,0 @@
# Contributor: Andrea Scarpino <andrea@archlinux.org>
source ../frameworks.conf
pkgname=kconfig
pkgver=${KFVersion}
pkgrel=1
pkgdesc='Offers functionality around reading and writing configuration'
arch=('x86_64')
url='https://projects.kde.org/projects/frameworks/kconfig'
license=('LGPL')
depends=('qt5-base')
makedepends=('extra-cmake-modules' 'qt5-tools')
checkdepends=('cmake')
groups=('kf5')
options=("debug")
source=("${KFServer}/${pkgver}/${pkgname}-${pkgver}.tar.xz")
sha256sums=( $(getSum ${pkgname}) )
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=${KFBuildType} \
-DCMAKE_INSTALL_PREFIX=${KFInstallPrefix} \
-DLIB_INSTALL_DIR=lib
make
}
check() {
cd build
msg "tests below are partially failing; probably of GUI dependency"
make test | return 0
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}

View File

@ -1,42 +0,0 @@
# Contributor: Andrea Scarpino <andrea@archlinux.org>
source ../frameworks.conf
pkgname=ki18n
pkgver=${KFVersion}
pkgrel=1
pkgdesc='A get-text based translation framework'
arch=('x86_64')
url='https://projects.kde.org/projects/frameworks/ki18n'
license=('LGPL')
depends=('qt5-base' 'qt5-script')
makedepends=('extra-cmake-modules')
checkdepends=('cmake')
groups=('kf5')
options=("debug")
source=("$KFServer/${KFVersion}/${pkgname}-${pkgver}.tar.xz")
sha256sums=( $(getSum ${pkgname}) )
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=${KFBuildType} \
-DCMAKE_INSTALL_PREFIX=${KFInstallPrefix} \
-DLIB_INSTALL_DIR=lib
make
}
check() {
cd build
msg "Currently one test is failing; Why?"
make test | return 0
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}

View File

@ -1,42 +0,0 @@
# Contributor: Andrea Scarpino <andrea@archlinux.org>
source ../plasma.conf
pkgname=oxygen-fonts
pkgver=${PVersion}
pkgrel=1
pkgdesc='The Oxygen font family. A desktop/gui font family for integrated use with the KDE desktop.'
arch=('any')
url='https://projects.kde.org/projects/playground/artwork/oxygen-fonts'
license=('LGPL')
depends=('fontconfig')
makedepends=('fontforge')
checkdepends=('cmake' 'extra-cmake-modules')
groups=('plasma')
options=("debug")
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
sha256sums=( $(getSum ${pkgname} | head -n 1) )
install=${pkgname}.install
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=${PBuildType} \
-DCMAKE_INSTALL_PREFIX=${PInstallPrefix} \
-DLIB_INSTALL_DIR=lib
make
}
check() {
cd build
make test || return 0
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}

View File

@ -1,13 +0,0 @@
post_install() {
echo -n "Updating font cache... "
fc-cache -f > /dev/null
echo "done."
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}