# $Id: PKGBUILD 211709 2014-04-23 17:41:09Z foutrelis $ # Maintainer: Evangelos Foutras # Contributor: Tobias Kieslich pkgname=thunar-archive-plugin pkgver=0.3.1 pkgrel=4 pkgdesc="Create and extract archives in Thunar" arch=('i686' 'x86_64') url="http://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin" license=('GPL2') groups=('xfce4-goodies') depends=('thunar' 'hicolor-icon-theme') makedepends=('intltool' 'xfce4-dev-tools') optdepends=('file-roller' 'kdeutils-ark' 'xarchiver') install=$pkgname.install source=(http://archive.xfce.org/src/thunar-plugins/$pkgname/0.3/$pkgname-$pkgver.tar.bz2 0001-Fix-file-roller-3.12.1-detection-bug-10826.patch) sha256sums=('9ad559b0c11308f6897ad56604e5a06dc8f369f649eb20120b2d3018ef5da54c' '4373c3011f5abd1d4119d283e832aeb858c810f14b3a59b6250cf10893aa0757') prepare() { cd "$srcdir/$pkgname-$pkgver" # https://bugzilla.xfce.org/show_bug.cgi?id=10826 patch -Np1 -i ../0001-Fix-file-roller-3.12.1-detection-bug-10826.patch NOCONFIGURE=1 xdt-autogen } build() { cd "$srcdir/$pkgname-$pkgver" ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib/xfce4 \ --localstatedir=/var \ --disable-static make } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: