# Maintainer: Icaro Perseo pkgname=gnome-encfs-manager pkgver=1.8.13 pkgrel=1rvm source=("https://launchpad.net/gencfsm/trunk/1.8/+download/${pkgname}_$pkgver.tar.gz") sourcetemplate="http://people.salixos.org/icaroperseo/14.1/gnome/$pkgname" docs=('INSTALL' 'AUTHORS' 'COPYING') url="http://www.libertyzero.com/GEncfsM/" slackdesc=\ ( #|-----handy-ruler---------------------------------------------------| "gnome-encfs-manager (An easy to use manager and mounter for encfs)" "The Gnome Encfs Manager (or short GEncfsM) is an easy to use manager" "and mounter for encfs stashes featuring per-stash configuration," "Gnome Keyring support, a tray menu inspired by Cryptkeeper and lots" "of unique features." ) build() { # Acceding to the working directory. cd $startdir/src/$pkgname-$pkgver # Building the binary file. ./autogen.sh ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --sysconfdir=/etc \ --build=$arch-slackware-linux \ --enable-schemas-compile \ --disable-appindicator make || return 1 make install DESTDIR=$startdir/pkg/ } doinst() { # glib schemas refresh. if [ -e usr/share/glib-2.0/schemas ]; then if [ -x /usr/bin/glib-compile-schemas ]; then /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1 fi fi }