mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-17 18:36:42 +02:00
https://www.qsl.net/kd2bd/predict.html Multi-user satellite tracking and orbital prediction program
34 lines
1 KiB
Text
34 lines
1 KiB
Text
# Contributor: Bryce Vandegrift <bryce@brycevandegrift.xyz>
|
|
# Maintainer: Bryce Vandegrift <bryce@brycevandegrift.xyz>
|
|
pkgname=predict
|
|
pkgver=2.3.1
|
|
pkgrel=0
|
|
pkgdesc="Multi-user satellite tracking and orbital prediction program"
|
|
url="https://www.qsl.net/kd2bd/predict.html"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
makedepends="alsa-lib-dev ncurses-dev bash"
|
|
subpackages="$pkgname-doc"
|
|
options="!check" # no test suite
|
|
source="https://www.qsl.net/kd2bd/predict-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
# Build predict
|
|
./build
|
|
|
|
# Build earthtrack
|
|
cd clients/earthtrack
|
|
./build
|
|
}
|
|
|
|
package() {
|
|
install -Dm 755 predict -t "$pkgdir/usr/bin"
|
|
install -Dm 755 xpredict -t "$pkgdir/usr/bin"
|
|
install -Dm 755 kepupdate -t "$pkgdir/usr/bin"
|
|
install -Dm 755 clients/earthtrack/earthtrack -t "$pkgdir/usr/bin"
|
|
install -Dm 644 docs/man/predict.1 -t "$pkgdir/usr/share/man/man1"
|
|
}
|
|
|
|
sha512sums="
|
|
88e609c875148a7937946fd0e6ded49782570e7667e0a5e75f4eecb83f52f14de3031e8a74ac454d99aa50a838d341892345704f58632d6e3b83fcf86da8a029 predict-2.3.1.tar.gz
|
|
"
|