summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD9
1 files changed, 6 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 341aa91f2827..3196c22537d8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: yinflying <yinflying@foxmail.com>
pkgname=gfzrnx-bin
pkgver=1.10
-pkgrel=1
+pkgrel=2
pkgdesc="RINEX GNSS Data Conversion and Manipulation Toolbox"
arch=('x86_64')
url="http://semisys.gfz-potsdam.de/semisys/scripts/download/index.php"
@@ -11,12 +11,15 @@ provides=('gfzrnx')
conflicts=()
replaces=()
backup=()
-options=()
+options=('!strip')
install=
source=("http://semisys.gfz-potsdam.de/semisys/software/gfzrnx/${pkgver}/gfzrnx_lx")
noextract=()
md5sums=('129804b45837ec75d3a7186064a2a973')
package() {
- install -Dm755 gfzrnx_lx "${pkgdir}/usr/bin/gfzrnx"
+ chmod 755 gfzrnx_lx
+ mkdir -p "${pkgdir}/usr/bin"
+ cp gfzrnx_lx "${pkgdir}/usr/bin/gfzrnx"
+ #install -Dm755 gfzrnx_lx "${pkgdir}/usr/bin/gfzrnx"
}