mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/skytraq-datalogger: new aport
This commit is contained in:
parent
17415f73b0
commit
78d70d6731
43
testing/skytraq-datalogger/APKBUILD
Normal file
43
testing/skytraq-datalogger/APKBUILD
Normal file
@ -0,0 +1,43 @@
|
||||
# Contributor: Mika Havela <mika.havela@gmail.com>
|
||||
# Maintainer: Mika Havela <mika.havela@gmail.com>
|
||||
pkgname=skytraq-datalogger
|
||||
pkgver=0.5.1
|
||||
_pkgver=0.5-1
|
||||
pkgrel=0
|
||||
pkgdesc="Configuration and download tool for GPS data loggers based on Skytraq Venus 5 and 6 chipsets"
|
||||
url="http://code.google.com/p/skytraq-datalogger/"
|
||||
arch="all"
|
||||
license="GNU GPL v2"
|
||||
depends=""
|
||||
depends_dev="curl-dev"
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://${pkgname}.googlecode.com/files/${pkgname}_${_pkgver}.tar.gz
|
||||
Makefile.patch
|
||||
agps-download.c.patch"
|
||||
|
||||
_builddir="$srcdir/${pkgname}-${_pkgver}"
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
}
|
||||
|
||||
md5sums="e691f9092f63c7100313a9881ff100d4 skytraq-datalogger_0.5-1.tar.gz
|
||||
5939083bf1ac066967f2489a21691ac5 Makefile.patch
|
||||
4111c54fd124ef7a1aad49c585cd46e4 agps-download.c.patch"
|
||||
8
testing/skytraq-datalogger/Makefile.patch
Normal file
8
testing/skytraq-datalogger/Makefile.patch
Normal file
@ -0,0 +1,8 @@
|
||||
--- skytraq-datalogger-0.5-1/Makefile
|
||||
+++ ./Makefile
|
||||
@@ -18,4 +18,5 @@
|
||||
rm -f *.o $(PROG) test
|
||||
|
||||
install:
|
||||
+ mkdir -p $(DESTDIR)/$(PREFIX)
|
||||
cp $(PROG) $(DESTDIR)/$(PREFIX)
|
||||
10
testing/skytraq-datalogger/agps-download.c.patch
Normal file
10
testing/skytraq-datalogger/agps-download.c.patch
Normal file
@ -0,0 +1,10 @@
|
||||
--- skytraq-datalogger-0.5-1/agps-download.c
|
||||
+++ ./agps-download.c
|
||||
@@ -3,7 +3,6 @@
|
||||
#include <string.h>
|
||||
|
||||
#include <curl/curl.h>
|
||||
-#include <curl/types.h>
|
||||
#include <curl/easy.h>
|
||||
|
||||
#define EPHERMIS_URL "ftp://skytraq:skytraq@60.250.205.31/ephemeris/Eph.dat"
|
||||
Loading…
x
Reference in New Issue
Block a user