blob: e071d411f9e3e4dd922b91e26154adac5f259f4a (
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
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=nemo-deja-dup-git
pkgver=r2.f99427f
pkgrel=5
pkgdesc="Déjà Dup Actions for Nemo File Manager"
arch=('any')
url="https://github.com/erickj/nemo-actions"
license=('LicenseRef-unknown')
depends=(
'deja-dup'
'nemo'
)
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("git+https://github.com/erickj/nemo-actions.git")
sha256sums=('SKIP')
pkgver() {
cd nemo-actions
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
package() {
cd nemo-actions
install -Dm644 *.nemo_action -t "$pkgdir/usr/share/nemo/actions/"
}
|