summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhirui Dai2023-07-21 10:38:32 -0700
committerZhirui Dai2023-07-21 10:38:32 -0700
commit157449114c710339301098624a6a837738dfb287 (patch)
tree908ccca5aa7a7cdbcd44ba3193b5580241a10f6a
downloadaur-157449114c710339301098624a6a837738dfb287.tar.gz
version 3.1.0.79
-rw-r--r--.SRCINFO12
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD16
3 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..440c6fa408e6
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = libgentl
+ pkgdesc = FLIR GenTL producer interface that enables the user to enumerate, communicate and stream from FLIR GigE Vision and USB3 Vision devices in a generic way independent from the underlying transport technology. This package contains shared libraries.
+ pkgname = libgentl
+ pkgver = 3.1.0.79
+ pkgrel = 1
+ arch = x86_64
+ license = custom:FLIR EULA
+ url = https://www.flir.com/
+ source = data.tar.gz
+ sha256sums = 2037c88c92d64d1070ea12e77700f0af767bce9895b9305d514d58958758043d
+
+pkgname = libgentl
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..903ec2f9508e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+pkg
+*.pkg.tar.zst
+*.tar.gz
+src
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..73980124e0e8
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+pkgdesc="FLIR GenTL producer interface that enables the user to enumerate, communicate and stream from FLIR GigE Vision and USB3 Vision devices in a generic way independent from the underlying transport technology. This package contains shared libraries."
+url='https://www.flir.com/'
+
+pkgname='libgentl'
+pkgver='3.1.0.79'
+arch=('x86_64')
+pkgrel=1
+license=("custom:FLIR EULA")
+
+source=("data.tar.gz")
+sha256sums=('2037c88c92d64d1070ea12e77700f0af767bce9895b9305d514d58958758043d')
+
+package() {
+ # Extract data
+ tar -xzf data.tar.gz -C ${pkgdir}/
+}