pkgname=mate-keyring
pkgver=1.1.0
pkgrel=2
pkgdesc="MATE Password Management daemon"
arch=(i686 x86_64)
license=('GPL' 'LGPL')
depends=('dbus')
makedepends=('intltool' 'pkgconfig' 'python2')
url="http://matsusoft.com.ar/projects/mate/"
groups=('mate')
options=('!libtool' '!emptydirs')
install=mate-keyring.install
source=()
sha256sums=()



build() {
    cd "${srcdir}/../../../"

    ./autogen.sh --prefix=/usr --sysconfdir=/etc \
        --localstatedir=/var --disable-static \
        --libexecdir=/usr/lib/mate-keyring \
        --with-pam-dir=/lib/security --with-root-certs=/etc/ssl/certs || return 1

    make || return 1
}

package() {
    cd "${srcdir}/../../../"

    make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1

    install -m755 -d "${pkgdir}/usr/share/mateconf/schemas"
    mateconf-merge-schema "${pkgdir}/usr/share/mateconf/schemas/${pkgname}.schemas" --domain ${pkgname} ${pkgdir}/etc/mateconf/schemas/*.schemas || return 1
    rm -f ${pkgdir}/etc/mateconf/schemas/*.schemas
}
