diff options
author | git user | 2025-04-13 12:28:59 +0200 |
---|---|---|
committer | git user | 2025-04-13 12:28:59 +0200 |
commit | e9e494087ee4e9c979c0256715a2c42bf43c2385 (patch) | |
tree | 60ffb8b03bd3408c6eb1fca47f21be83a0df1ef3 | |
parent | 42b5941033d81643e94590cbf450ad99daa9943b (diff) | |
download | aur-nmeasim-python-git.tar.gz |
'readme.md' needed to be renamed to 'README.md'; license is 'MIT'.
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -1,11 +1,11 @@ pkgbase = nmeasim-python-git pkgdesc = A Python 3 GNSS/NMEA receiver simulation, with GUI. pkgver = 1.1.1.0.r33.20230911.ba46ca8 - pkgrel = 1 + pkgrel = 2 epoch = 0 url = https://gitlab.com/nmeasim/nmeasim arch = any - license = custom: Public Domain + license = MIT makedepends = git makedepends = python-build makedepends = python-installer @@ -4,13 +4,13 @@ _pkgname='nmeasim-python' pkgname="${_pkgname}-git" epoch=0 pkgver=1.1.1.0.r33.20230911.ba46ca8 -pkgrel=1 +pkgrel=2 pkgdesc='A Python 3 GNSS/NMEA receiver simulation, with GUI.' arch=( any ) url='https://gitlab.com/nmeasim/nmeasim' -license=('custom: Public Domain') +license=('MIT') depends=( 'python>=3.8' 'python-geographiclib' @@ -90,7 +90,7 @@ package() { mv -v "${pkgdir}/usr/bin/nmeasim" "${pkgdir}/usr/bin/nmeasim-python" # Renaming it, because there is also Java-nmeasim (https://github.com/abuech2s/nmeasim) and a Windows-nmeasim (https://sourceforge.net/projects/nmeasim/), which might be worth to have as Arch Linux packages as well. install -D -v -m644 nmeasim/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - for _docfile in readme.md; do + for _docfile in README.md; do install -D -v -m644 "${_docfile}" "${pkgdir}/usr/share/doc/${_pkgname}/${_docfile}" done ln -svf "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" "${pkgdir}/usr/share/doc/${_pkgname}/LICENSE" |