mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
29 lines
785 B
Bash
29 lines
785 B
Bash
# Contributors from Arch: https://www.archlinux.org/packages/extra/x86_64/libaccounts-glib/
|
|
|
|
pkgname=libaccounts-glib
|
|
pkgver=1.21
|
|
pkgrel=1
|
|
pkgdesc="Glib-based client library for accessing the online accounts database"
|
|
arch=('x86_64')
|
|
url="http://code.google.com/p/accounts-sso/"
|
|
license=('LGPL')
|
|
depends=('dbus-glib' 'libxml2' 'sqlite3')
|
|
makedepends=('python2-gobject' 'docbook-xsl' 'gtk-doc')
|
|
source=("https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_$pkgver")
|
|
md5sums=('88184b9d613e04ae17b164019661d35d')
|
|
|
|
build() {
|
|
cd $pkgname-*
|
|
./autogen.sh
|
|
PYTHON=/usr/bin/python2 HAVE_GCOV_FALSE='#' ./configure \
|
|
--prefix=/usr \
|
|
--disable-static \
|
|
--disable-gtk-doc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-*
|
|
make DESTDIR="$pkgdir" install
|
|
}
|