blob: 606d9fa2565589d16917d310187c9090b06be078 (
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.26
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=('3c22743b166e239e3fa42d588982a02530729dbff54bbdba824afaecdebf1fd7')
package() {
install -Dm755 "$_binname-$pkgver" "$pkgdir/usr/bin/$_binname"
}
|