diff options
Diffstat (limited to 'community/mate-file-manager/PKGBUILD')
-rw-r--r-- | community/mate-file-manager/PKGBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/community/mate-file-manager/PKGBUILD b/community/mate-file-manager/PKGBUILD new file mode 100644 index 000000000..0203916d6 --- /dev/null +++ b/community/mate-file-manager/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 104181 2014-01-16 15:54:41Z flexiondotorg $ +# Maintainer : Martin Wimpress <code@flexion.org> +# Contributor: Giovanni "Talorno" Ricciardi <kar98k.sniper@gmail.com> +# Contributor: Xpander <xpander0@gmail.com> + +pkgname=mate-file-manager +pkgver=1.6.3 +pkgrel=1 +pkgdesc="The MATE shell and file manager" +url="http://mate-desktop.org" +arch=('i686' 'x86_64') +license=('GPL') +depends=('dbus' 'desktop-file-utils' 'exempi' 'gtk2' 'gvfs' 'libexif' + 'libunique' 'libxt' 'mate-desktop' 'mate-icon-theme' 'startup-notification') +makedepends=('gobject-introspection' 'mate-common' 'pangox-compat') +optdepends=('gstreamer0.10-good-plugins: automatic media playback when mouseover') +options=('!emptydirs') +groups=('mate') +source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz") +sha1sums=('ea52cfef3d728e4d5e135bff88452c02de05e960') +install=${pkgname}.install + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/caja \ + --enable-unique \ + --enable-introspection \ + --disable-static \ + --disable-update-mimedb + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |