blob: 1d9d28458e6e8bbdc8200971e06c5b959af1b9fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Adam Hellberg <sharparam@sharparam.com>
pkgname=mapshot-bin
pkgver=0.0.22
pkgrel=1
pkgdesc="Tool to export Factorio saves as zoomable HTML maps (binary release)"
arch=(x86_64)
url="https://github.com/Palats/mapshot"
license=('Apache')
depends=('glibc')
optdepends=('factorio: The game in some form is required for rendering maps')
provides=('mapshot')
conflicts=('mapshot')
_binname=${pkgname%-bin}
source=("$_binname-$pkgver::https://github.com/Palats/mapshot/releases/download/$pkgver/mapshot-linux")
sha256sums=('8d636b26791f1fc91cfda73d74bf97f22219d43dc7a6766b4eca91d8c1c418ff')
package() {
install -Dm755 "$_binname-$pkgver" "$pkgdir/usr/bin/$_binname"
}
|