mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 17:37:36 +08:00
move some pkgs to platform-testing
This commit is contained in:
parent
1eaab7d292
commit
a3736e6049
@ -1,37 +0,0 @@
|
||||
#
|
||||
# KDE SC Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||||
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||||
|
||||
# include global config
|
||||
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||||
|
||||
pkgname=akonadi
|
||||
pkgver=1.4.0
|
||||
pkgrel=1
|
||||
pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data"
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://www.akonadi-project.org'
|
||||
license=('LGPL')
|
||||
depends=('shared-mime-info' 'boost' 'mysql' 'soprano>=2.4.64')
|
||||
makedepends=('pkgconfig' 'cmake' 'automoc4')
|
||||
install=$pkgname.install
|
||||
source=("http://download.akonadi-project.org/${pkgname}-${pkgver}.tar.bz2")
|
||||
md5sums=('ed19efb982f7debd7e109cf1397d0588')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ../${pkgname}-${pkgver} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_SKIP_RPATH=ON
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/build
|
||||
make DESTDIR=${pkgdir} install
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
post_install() {
|
||||
update-mime-database usr/share/mime &> /dev/null
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
#
|
||||
# KDE SC Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||||
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||||
|
||||
# include global config
|
||||
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||||
|
||||
pkgname=attica
|
||||
pkgver=0.1.4
|
||||
pkgrel=1
|
||||
pkgdesc='A library to access Open Collaboration Service providers'
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://www.kde.org'
|
||||
license=('LGPL')
|
||||
depends=('qt')
|
||||
makedepends=('cmake')
|
||||
source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
||||
md5sums=('04887f3d10f6394cafc0d77c0ae60ec2')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ../${pkgname}-${pkgver} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_SKIP_RPATH=ON
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/build
|
||||
make DESTDIR=${pkgdir} install
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
post_install() {
|
||||
echo ">>>Note: the supplied gpsd udev rules are device-specific, so"
|
||||
echo ">>>if your device isn't detected correctly, please use lsusb or"
|
||||
echo ">>>another suitable tool to determine the proper device IDs and"
|
||||
echo ">>>use the commented rules to fill in the blanks for your device."
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
#
|
||||
# KDE SC Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||||
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||||
|
||||
# include global config
|
||||
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||||
|
||||
pkgname=soprano
|
||||
pkgver=2.4.64
|
||||
pkgrel=1
|
||||
pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 framework for RDF data'
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://soprano.sourceforge.net/'
|
||||
license=('GPL' 'LGPL')
|
||||
depends=('qt' 'clucene' 'redland' 'libiodbc' 'virtuoso')
|
||||
makedepends=('cmake' 'openjdk6')
|
||||
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
||||
md5sums=('edb7f48dd4cc0d5baa75797520c189fc')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}
|
||||
mkdir build
|
||||
cd build
|
||||
. /etc/profile.d/openjdk6.sh
|
||||
# we need the rpath
|
||||
cmake ../${pkgname}-${pkgver} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_SKIP_RPATH=OFF \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr || return \
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/build
|
||||
make DESTDIR="${pkgdir}" install || return 1
|
||||
}
|
Loading…
Reference in New Issue
Block a user