mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-07 12:17:14 +08:00
32 lines
821 B
Bash
32 lines
821 B
Bash
#
|
|
# Chakra 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>
|
|
|
|
pkgname=libbluedevil
|
|
pkgver=1.8
|
|
pkgrel=1
|
|
pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack'
|
|
arch=('i686' 'x86_64')
|
|
url="https://projects.kde.org/projects/playground/libs/libbluedevil"
|
|
license=('GPL')
|
|
depends=('qt' 'bluez')
|
|
makedepends=('cmake')
|
|
source=("http://media.ereslibre.es/2010/11/${pkgname}-v${pkgver}-1.tar.bz2")
|
|
md5sums=('03c79dd8a6d40e2872fee27c9b81190d')
|
|
|
|
build(){
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-v${pkgver}-1 \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
} |