blob: 10996a6eef65f3a1142a1ba6c4ca683084df4a0b (
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.17
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::https://github.com/Palats/mapshot/releases/download/$pkgver/mapshot-linux")
sha256sums=('ff34ecd7c502861eea747fc876001d6f7eb6628dce71996c73f07fb8039fc6d9')
package() {
install -Dm755 "$_binname" "$pkgdir/usr/bin/$_binname"
}
|