summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 18cb661930634b19009a90a0840662cd4f8d4b29 (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
# Maintainer: Shayne Hartford <shayneehartford@gmail.com>

pkgname=protondb-tags
_pkgname=ProtonDB-Tags
pkgver=1.0.0
pkgrel=1
pkgdesc="Pull ratings from ProtonDB and import them into your Steam library as tags."
arch=('any')
url="https://github.com/CorruptComputer/$_pkgname"
license=('MIT')
depends=(
    'python-vdf'
    'python-requests'
)
optdepends=(
    'steam: Supports any steam, native, flatpak, etc'
)
provides=('protondb-tags')
source=(https://github.com/CorruptComputer/$_pkgname/archive/$pkgver.zip)
md5sums=('fdeb3c418519a7942bbd31cf636068b6')

package() {
  cd "$srcdir/$_pkgname-$pkgver"
  
  install -Dm755 $_pkgname.py "$pkgdir/usr/bin/$_pkgname"
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}