# Maintainer: Gustavo Alvarez _plug=average pkgname=avisynth-plugin-${_plug}-git pkgver=0.95.0.gec21ee1 pkgrel=1 pkgdesc="Plugin for Avisynth: ${_plug} (GIT version)" arch=('x86_64') url='https://github.com/pinterf/Average' license=('MIT') depends=('libavisynth.so') makedepends=('git' 'cmake' 'avisynthplus' ) provides=("avisynth-plugin-${_plug}") conflicts=("avisynth-plugin-${_plug}") source=("${_plug}::git+https://github.com/pinterf/Average.git") sha256sums=('SKIP') options=('debug') pkgver() { cd "${_plug}" echo "$(git describe --long --tags | tr - .)" } prepare() { rm -fr "${_plug}/Average/"{avs*,avi*} } build() { CXXFLAGS=" $(pkg-config --cflags avisynth)" cmake -S "${_plug}" -B build \ -DCMAKE_BUILD_TYPE=None \ -DCMAKE_INSTALL_PREFIX=/usr cmake --build build } package(){ DESTDIR="${pkgdir}" cmake --install build install -Dm644 "${_plug}/README.md" "${pkgdir}/usr/share/doc/${_plug}/README.md" install -Dm644 "${_plug}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }