mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:54:37 +08:00
31 lines
693 B
Bash
31 lines
693 B
Bash
# Contributions from Arch:
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
pkgname=accounts-qml-module
|
|
pkgver=0.6
|
|
pkgrel=1
|
|
pkgdesc="Expose the Online Accounts API to QML applications"
|
|
url="https://gitlab.com/accounts-sso/accounts-qml-module"
|
|
arch=(x86_64)
|
|
license=(LGPL)
|
|
depends=(signon libaccounts-qt qt5-declarative)
|
|
makedepends=(qt5-tools)
|
|
source=("https://gitlab.com/accounts-sso/$pkgname/repository/archive.tar.gz?ref=VERSION_$pkgver")
|
|
md5sums=('d62f676e837bfa2b8bb5c12507a36ce9')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
qmake-qt5 ../$pkgname-*/$pkgname.pro PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make INSTALL_ROOT="$pkgdir" install_subtargets # skip docs
|
|
}
|
|
|