summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0af7eefb46d6427bafe5ef6f286ff2cc34ab0c44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Maintainer: ValHue <vhuelamo at gmail dot com>
# https://github.com/ValHue/AUR-PKGBUILDs
#
_pkgname="cover-thumbnailer"
pkgname="${_pkgname}-git"
pkgver=760a344
pkgrel=1
pkgdesc="Generates thumbnails for Nautilus folders (music album covers,...)."
arch=('i686' 'x86_64')
url="https://github.com/flozz/cover-thumbnailer"
license=('GPL3')
depends=('python2-pillow' 'python2-gconf')
makedepends=('gettext')
conflicts=("${_pkgname}")
provides=("${_pkgname}")
source=("${_pkgname}::git+https://github.com/flozz/${_pkgname}")
sha256sums=('SKIP')

pkgver() {
  cd ${_pkgname}
  git describe --always | sed 's|-|.|g' | sed 's|_|.|g' | cut -d'.' -f2-
}

package() {
	cd "${srcdir}/${_pkgname}"
	./install.sh -p ${pkgdir}
}

# vim:set ts=4 sw=2 ft=sh et: