blob: c54a52baf3ad26358b1197026d127343aa3f43c6 (
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
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Vain <aurmaint1 on host: uninformativ dot de>
pkgname=asciiworld-git
pkgver=23.12.1.g8d021b1
pkgrel=1
pkgdesc="ASCII world map and tools"
arch=('i686' 'x86_64')
url="https://uninformativ.de/git/asciiworld"
license=('MIT')
depends=('gd' 'shapelib')
makedepends=('git')
optdepends=('curl: Retrieving various data'
'python: Additional tools, e.g. satellite tracking'
'python-geographiclib: Geographic calculations, used by tools'
'python-pyephem: Calculating satellite positions'
'python-maxminddb: Reading GeoIP databases'
'geoip-database-extra: An actual GeoIP database'
'ncurses: For tput')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://uninformativ.de/git/asciiworld.git')
md5sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
git describe --always | sed 's|-|.|g; s|v||'
}
build() {
cd "$srcdir/${pkgname%-git}"
make DEFAULT_MAP=/usr/share/"${pkgname%-git}"/ne_110m_land.shp
}
package() {
cd "$srcdir/${pkgname%-git}"
make DESTDIR="$pkgdir" prefix="/usr" install
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/${pkgname%-git}/LICENSE"
}
|