blob: b9cd4c2e68fddcdae6e62ecf206a98a2e8c4f6f5 (
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
|
# Maintainer: Aptivi <ceo at aptivi dot anonaddy dot com>
pkgname=bskyid-git
pkgver=v1.0.1.r0.899856d
pkgrel=1
pkgdesc="Unofficial application to fetch your BlueSky ID"
arch=(any)
url="https://aptivi.github.io"
license=('GPL-3.0-or-later')
depends=('bash')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
options=('!strip')
source=("${pkgname}::git+https://github.com/Aptivi/BskyId#branch=main")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname}"
printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}
package() {
cd "${pkgname}"
make install DESTDIR=$pkgdir
}
|