summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a6e996330647e99285237888930e021e5b6ebb8c (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
28
29
30
31
# Maintainer: Kye Hunter <kye(dot)evan(dot)hunter(at)gmail(dot)com>

pkgname=capcom-git
_pkgname=${pkgname%%-git}
pkgver=0.1
pkgrel=1
pkgdesc="Atom feed aggregator for Gemini"
arch=(any)
url="https://git.sr.ht/~solderpunk/capcom"
license=('GPLv3')
depends=(
    'python-agunua'
    'python-feedparser'
    'python-urllib3'
)
makedepends=()
provides=(
    $_pkgname
)
conflicts=(
    $_pkgname
)
source=('git+https://git.sr.ht/~solderpunk/capcom')
sha256sums=('SKIP')

package() {
    install -D -m0755 -t \
        "${pkgdir}"/usr/bin \
        "${srcdir}"/"${_pkgname}"/capcom.py
}