Date: Thursday, March 30, 2023 @ 16:23:31
  Author: alucryd
Revision: 472214

archrelease: copy trunk to staging-x86_64

Added:
  vid.stab/repos/staging-x86_64/
  vid.stab/repos/staging-x86_64/PKGBUILD
    (from rev 472213, vid.stab/trunk/PKGBUILD)

----------+
 PKGBUILD |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

Copied: vid.stab/repos/staging-x86_64/PKGBUILD (from rev 472213, 
vid.stab/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD                             (rev 0)
+++ staging-x86_64/PKGBUILD     2023-03-30 16:23:31 UTC (rev 472214)
@@ -0,0 +1,42 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: EVorster <[email protected]>
+
+pkgname=vid.stab
+pkgver=1.1.1
+pkgrel=1
+pkgdesc='Video stabilization library'
+arch=(x86_64)
+url=http://public.hronopik.de/vid.stab
+license=(GPL)
+depends=(
+  gcc-libs
+  glibc
+)
+makedepends=(
+  cmake
+  git
+  ninja
+)
+provides=(libvidstab.so)
+_tag=90c76aca2cb06c3ff6f7476a7cd6851b39436656
+source=(git+https://github.com/georgmartius/vid.stab.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+  cd vid.stab
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cmake -S vid.stab -B build -G Ninja \
+    -DCMAKE_BUILD_TYPE=None \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  cmake --build build
+}
+
+package() {
+  DESTDIR="${pkgdir}" cmake --install build
+}
+
+# vim: ts=2 sw=2 et:

Reply via email to