Initial commit
This commit is contained in:
commit
7930dcffac
9 changed files with 277 additions and 0 deletions
36
PKGBUILD
Normal file
36
PKGBUILD
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
|
||||
|
||||
pkgname=tumbler-folder-thumbnailer
|
||||
pkgver=0.0.3
|
||||
pkgrel=1
|
||||
pkgdesc="Custom folder thumbnails for Tumbler"
|
||||
arch=(any)
|
||||
url="https://codeberg.org/doppelhelix/tumbler-folder-thumbnailer"
|
||||
license=(
|
||||
0BSD
|
||||
)
|
||||
makedepends=(
|
||||
git
|
||||
)
|
||||
optdepends=(
|
||||
'inkscape: for SVG support'
|
||||
)
|
||||
source=("$pkgname-$pkgver::git+$url.git#tag=${pkgver}?signed")
|
||||
b2sums=('8aad749cc5f4a27e84e2ca46efb1ff3dd7dbccdf8e5a66cdb9b682d89a07a321992b57d36a6f4e35197d5da42833c21db731129ec665dbb6145db45e73872936')
|
||||
validpgpkeys=(
|
||||
'47D15FC0F6AD8433CD06B4DF5874D2437CD5BBB3' # Christian Schendel <doppelhelix@gmail.com>
|
||||
)
|
||||
options+=(!strip)
|
||||
package() {
|
||||
depends+=(
|
||||
bash
|
||||
imagemagick
|
||||
tumbler
|
||||
)
|
||||
cd "$pkgname-$pkgver"
|
||||
install -Dm0644 -t "$pkgdir/usr/share/thumbnailers" folder.thumbnailer
|
||||
install -Dm0755 -t "$pkgdir/usr/bin" folder-thumbnailer
|
||||
install -Dm0644 "$srcdir/$pkgname-$pkgver/LICENSES/0BSD.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
||||
|
||||
# vim: set ft=sh ts=4 sw=4 et:
|
||||
Loading…
Add table
Add a link
Reference in a new issue