Date: Thursday, June 7, 2018 @ 01:03:35 Author: foutrelis Revision: 326105
archrelease: copy trunk to staging-x86_64 Added: thunar-media-tags-plugin/repos/staging-x86_64/ thunar-media-tags-plugin/repos/staging-x86_64/PKGBUILD (from rev 326104, thunar-media-tags-plugin/trunk/PKGBUILD) ----------+ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) Copied: thunar-media-tags-plugin/repos/staging-x86_64/PKGBUILD (from rev 326104, thunar-media-tags-plugin/trunk/PKGBUILD) =================================================================== --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2018-06-07 01:03:35 UTC (rev 326105) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Evangelos Foutras <evange...@foutrelis.com> +# Contributor: Andrew Simmons <andrew.simm...@gmail.com> + +pkgname=thunar-media-tags-plugin +pkgver=0.3.0 +pkgrel=1 +pkgdesc="Adds special features for media files to the Thunar File Manager" +arch=('x86_64') +license=('GPL') +url="http://goodies.xfce.org/projects/thunar-plugins/thunar-media-tags-plugin" +groups=('xfce4-goodies') +depends=('taglib' 'thunar') +makedepends=('intltool') +source=(https://archive.xfce.org/src/thunar-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) +sha256sums=('e265c4415abac40337cc5566c6f706efcf0be4e97723abe22ba8b874c93a591b') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --disable-debug + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: