[arch-commits] Commit in (4 files)
Daniel Bermond
dbermond at archlinux.org
Fri May 29 12:53:01 UTC 2020
Date: Friday, May 29, 2020 @ 12:52:59
Author: dbermond
Revision: 637023
Initial commit of avisynthplus
Added:
avisynthplus/
avisynthplus/repos/
avisynthplus/trunk/
avisynthplus/trunk/PKGBUILD
----------+
PKGBUILD | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
Added: avisynthplus/trunk/PKGBUILD
===================================================================
--- avisynthplus/trunk/PKGBUILD (rev 0)
+++ avisynthplus/trunk/PKGBUILD 2020-05-29 12:52:59 UTC (rev 637023)
@@ -0,0 +1,25 @@
+# Maintainer: Daniel Bermond <dbermond at archlinux.org>
+
+pkgname=avisynthplus
+pkgver=3.6.0
+pkgrel=2
+pkgdesc='An improved version of the AviSynth frameserver'
+arch=('x86_64')
+url='https://avs-plus.net/'
+license=('GPL')
+depends=('gcc-libs')
+makedepends=('cmake')
+source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/AviSynth/AviSynthPlus/archive/v${pkgver}.tar.gz")
+sha256sums=('48f4196e99a2583f6a7cbf71087f982bccc195ededa858ab9281bc029ef93c8d')
+
+build() {
+ cmake -B build -S "AviSynthPlus-${pkgver}" \
+ -DCMAKE_BUILD_TYPE:STRING='None' \
+ -DCMAKE_INSTALL_PREFIX:PATH='/usr' \
+ -Wno-dev
+ make -C build
+}
+
+package() {
+ make -C build DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list