mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 07:37:16 +08:00
31 lines
825 B
Bash
31 lines
825 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=libgnome-keyring
|
|
pkgver=3.6.0
|
|
pkgrel=1
|
|
pkgdesc="GNOME keyring client library"
|
|
arch=('x86_64')
|
|
license=('GPL' 'LGPL')
|
|
depends=('dbus-core>=1.4.0' 'libgcrypt>=1.4.6' 'glib2>=2.34.0')
|
|
makedepends=('intltool' 'gobject-introspection' 'python2')
|
|
options=('!libtool' '!emptydirs')
|
|
url="http://www.gnome.org"
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/3.6/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('4d8a8e81e6f5413c2c0c472380988e6e')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static \
|
|
--libexecdir=/usr/lib/gnome-keyring
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|