mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
27 lines
769 B
Bash
27 lines
769 B
Bash
|
# Maintainer: Weng Xuetian <wengxt@gmail.com>
|
||
|
# Contributor: Antonio Rojas <arojas@archlinux.org>
|
||
|
|
||
|
pkgname=telepathy-accounts-signon
|
||
|
pkgver=1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A mission control plugin for Telepathy, integrating with libaccounts and libsignon to provide IM accounts and authentication"
|
||
|
arch=(i686 x86_64)
|
||
|
url='https://gitlab.com/accounts-sso/telepathy-accounts-signon'
|
||
|
license=(LGPL)
|
||
|
depends=(telepathy-mission-control libaccounts-glib libsignon-glib)
|
||
|
makedepends=(qt5-base)
|
||
|
source=("https://gitlab.com/accounts-sso/$pkgname/repository/archive.tar.gz?ref=$pkgver")
|
||
|
sha1sums=('7c1f21a35c3bdb77b82087bf40c7b61ab2323176')
|
||
|
|
||
|
build() {
|
||
|
mkdir -p build
|
||
|
cd build
|
||
|
qmake-qt5 ../$pkgname-$pkgver-*
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd build
|
||
|
make INSTALL_ROOT="$pkgdir" install
|
||
|
}
|