mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
29 lines
636 B
Bash
29 lines
636 B
Bash
source ../kdeapps.conf
|
|
|
|
pkgname=libkfbapi
|
|
pkgver=5.3.0
|
|
pkgrel=1
|
|
pkgdesc="KDE library for accessing Facebook services"
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/extragear/libs/libkfbapi'
|
|
license=('GPL')
|
|
depends=('qt5-base' 'kcoreaddons' 'kio' 'ki18n')
|
|
makedepends=('cmake' 'extra-cmake-modules' 'libaccounts-qt5' 'kaccounts-integration' 'signon')
|
|
source=("git://anongit.kde.org/libkfbapi.git#commit=8b7ab6f")
|
|
sha512sums=('SKIP')
|
|
|
|
prepare() {
|
|
mkdir "${srcdir}/build"
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/build"
|
|
cmake_kf5 "../$pkgname"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/build"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|