blob: c7b14231e8395b3e6dafccf73520082463d1cd26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Ayush Agarwal <ayushnix at fastmail dot com>
pkgname=pass-coffin
pkgver=1.2.1
pkgrel=1
pkgdesc="A password store extension that hides data inside a signed and encrypted coffin"
arch=(any)
url="https://github.com/ayushnix/pass-coffin"
license=('GPL')
depends=('pass'
'tar'
'findutils')
conflicts=('pass-coffin-git'
'pass-tomb'
'pass-tomb-git')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('bca41b9c9dc3525ddfccef31baef2c61366a968c43ee841c3b6c6934e3263fbe')
package() {
cd "$pkgname-$pkgver"
make DESTDIR="${pkgdir}" install
}
|