blob: 23a0e72119fe2f63109b637c7b02d73d8af4b50c (
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.24
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=('6ad3d0e772ba7dd45caab7b6dbc604ca2377a973bf159c71aa62181046f3110e')
package() {
install -Dm755 "$_binname-$pkgver" "$pkgdir/usr/bin/$_binname"
}
|