blob: f8d41bbde52b2224083e937c65bbfae200180e6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Emma Tebibyte <emma@tebibyte.media>
pkgname="protonkey"
pkgver=1.0.1
pkgrel=1
pkgdesc="ProtonMail PGP Key Downloader"
arch=("any")
url="https://git.tebibyte.media/emma/protonkey"
license=("AGPL3")
source=("https://git.tebibyte.media/emma/protonkey/archive/1.0.1.tar.gz")
provides=("protonkey")
sha256sums=("SKIP")
package() {
cd "$srcdir/protonkey"
mkdir -p "$pkgdir/usr/bin"
mkdir -p "$pkgdir/usr/share/man/man1"
cp protonkey "$pkgdir/usr/bin"
cp protonkey.1 "$pkgdir/usr/share/man/man1"
}
|