aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2cc36ea0ee80aabc04cb53295590acf4f13dcd89 (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
# -*- mode: sh; -*-

pkgname=dot-vault
pkgver=1.1.0
pkgrel=1
pkgdesc="A secure vault utility for managing, backing up, and restoring dotfiles with a TUI."
arch=('any')
url="https://aur.archlinux.org/packages/dot-vault"
license=('MIT')
depends=('bash' 'coreutils' 'tar' 'file' 'findutils')
provides=('dotfiles-manager')
conflicts=('fish-manager')
source=("$pkgname::https://aur.archlinux.org/$pkgname.tar.gz")
source=("$pkgname.sh")
sha256sums=('SKIP')

build() {

    chmod +x "$pkgname.sh"
}

package() {

    install -Dm755 "$pkgname.sh" "${pkgdir}/usr/bin/$pkgname"


}