blob: 874b41421d9c34e9c4d8956b55a8cd77fa19862d (
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
|
# Maintainer: J. Nathanael Philipp <nathanael@philipp.land>
pkgname=coordcon
pkgver=0.1.4
pkgrel=1
pkgdesc="Commandline tool to convert geo coordinates"
arch=("any")
url="https://github.com/jnphilipp/coordcon"
license=("GPL3+")
makedepends=("git" "help2man" "python" "python-virtualenv")
depends=("python" "python-utm")
source=("git+https://github.com/jnphilipp/coordcon.git")
md5sums=(SKIP)
check() {
cd "$srcdir/$pkgname"
git checkout $pkgver
make clean
make test
}
package() {
cd "$srcdir/$pkgname"
git checkout $pkgver
make install DEST_DIR=$pkgdir BASH_COMPLETION_DIR=/etc/bash_completion.d
}
|