Package Details: vapoursynth-plugin-retinex-git 4.1.g6bfbdd4-1

Git Clone URL: https://aur.archlinux.org/vapoursynth-plugin-retinex-git.git (read-only, click to copy)
Package Base: vapoursynth-plugin-retinex-git
Description: Plugin for Vapoursynth: retinex (GIT version)
Upstream URL: https://forum.doom9.org/showthread.php?t=171307
Keywords: vapoursynth
Licenses: GPL
Conflicts: vapoursynth-plugin-retinex
Provides: vapoursynth-plugin-retinex
Submitter: sl1pkn07
Maintainer: sl1pkn07
Last Packager: sl1pkn07
Votes: 3
Popularity: 0.000000
First Submitted: 2014-10-15 16:48 (UTC)
Last Updated: 2022-03-13 16:52 (UTC)

Latest Comments

sl1pkn07 commented on 2019-01-25 22:30 (UTC)

done

fitu996 commented on 2019-01-22 07:05 (UTC) (edited on 2019-01-22 07:08 (UTC) by fitu996)

Simple fix:

# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>

_plug=retinex
pkgname=vapoursynth-plugin-${_plug}-git
pkgver=r4.0.gf7abea5
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)"
arch=('i686' 'x86_64')
url='http://forum.doom9.org/showthread.php?t=171307'
license=('GPL')
depends=('vapoursynth')
makedepends=('git' 'meson')
provides=("vapoursynth-plugin-${_plug}")
conflicts=("vapoursynth-plugin-${_plug}")
source=("${_plug}::git+https://github.com/HomeOfVapourSynthEvolution/VapourSynth-Retinex.git")
sha1sums=('SKIP')

pkgver() {
  cd "${_plug}"
  echo "$(git describe --long --tags | tr - .)"
}

prepare() {
  cd "${_plug}"
  arch-meson build
}

build() {
  cd "${_plug}"
  #./configure --install="${pkgdir}/usr/lib/vapoursynth" \
  #            --extra-cxxflags="${CXXFLAGS} ${CPPFLAGS}" \
  #            --extra-ldflags="${LDFLAGS}"
  #make
  ninja -C build
}

package(){
  cd "${_plug}"
  #make install
  DESTDIR="${pkgdir}" ninja -C build install
  install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md"
}

DeadNews commented on 2019-01-12 02:26 (UTC)

https://github.com/HomeOfVapourSynthEvolution/VapourSynth-Retinex

Replace custom configure script with Meson build system