diff options
author | sL1pKn07 | 2023-11-05 19:05:06 +0100 |
---|---|---|
committer | sL1pKn07 | 2023-11-05 19:09:31 +0100 |
commit | ccc42e52b80669d32b056ea8aedae18c648928c0 (patch) | |
tree | 42414f101fb0794889d6383704ce5fa6b662f00d | |
parent | cce3d131a67d650a263b4cacdcd4ab512db17df4 (diff) | |
download | aur-ccc42e52b80669d32b056ea8aedae18c648928c0.tar.gz |
bump
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 24 |
2 files changed, 18 insertions, 12 deletions
@@ -1,6 +1,6 @@ pkgbase = avisynthplus-git pkgdesc = Avisynth+. (GIT Version) - pkgver = 3.7.3.0.gfc5b9bc4 + pkgver = 3.7.3.8.geba18dca pkgrel = 1 url = http://avs-plus.net arch = x86_64 @@ -10,10 +10,12 @@ pkgbase = avisynthplus-git makedepends = python-sphinx makedepends = devil options = debug - source = avisynthplus::git+https://github.com/AviSynth/AviSynthPlus.git + source = git+https://github.com/AviSynth/AviSynthPlus.git sha256sums = SKIP pkgname = avisynthplus-git + depends = gcc-libs + depends = glibc depends = devil provides = avisynthplus provides = libavisynth.so @@ -5,7 +5,7 @@ pkgname=( 'avisynthplus-git' 'avisynthplus-docs-git' ) -pkgver=3.7.3.0.gfc5b9bc4 +pkgver=3.7.3.8.geba18dca pkgrel=1 pkgdesc='Avisynth+. (GIT Version)' arch=('x86_64') @@ -17,32 +17,36 @@ makedepends=( 'python-sphinx' 'devil' ) -source=('avisynthplus::git+https://github.com/AviSynth/AviSynthPlus.git') +source=('git+https://github.com/AviSynth/AviSynthPlus.git') sha256sums=('SKIP') options=('debug') pkgver() { - cd avisynthplus + cd AviSynthPlus echo $(git describe --long --tags | tr - . | tr -d v) } prepare() { - mkdir -p avisynthplus/distrib/docs/english/source/_static + mkdir -p AviSynthPlus/distrib/docs/english/source/_static } build() { - cmake -S avisynthplus -B build \ + cmake -S AviSynthPlus -B build \ -DCMAKE_BUILD_TYPE=None \ -DCMAKE_INSTALL_PREFIX=/usr \ -DENABLE_CUDA=OFF cmake --build build - make -C "${srcdir}/avisynthplus/distrib/docs/english" html # man + make -C "${srcdir}/AviSynthPlus/distrib/docs/english" html # man } package_avisynthplus-git() { - depends=('devil') + depends=( + 'gcc-libs' # libgcc_s.so libstdc++.so + 'glibc' # ld-linux-x86-64.so libc.so libm.so + 'devil' # libIL.so + ) provides=( 'avisynthplus' 'libavisynth.so' @@ -51,14 +55,14 @@ package_avisynthplus-git() { DESTDIR="${pkgdir}" cmake --build build --target install - #install -Dm644 avisynthplus/distrib/docs/english/build/man/avisynth.1 "${pkgdir}/usr/share/man/man1/avisynth.1" + #install -Dm644 AviSynthPlus/distrib/docs/english/build/man/avisynth.1 "${pkgdir}/usr/share/man/man1/avisynth.1" - (cd avisynthplus/distrib/Examples; find . -type f -exec install -Dm644 "{}" "${pkgdir}/usr/share/avisynth/Examples/{}" \;) + (cd AviSynthPlus/distrib/Examples; find . -type f -exec install -Dm644 "{}" "${pkgdir}/usr/share/avisynth/Examples/{}" \;) } package_avisynthplus-docs-git() { pkgdesc='AviSynth+ Documentation. (GIT Version)' arch=('any') - (cd avisynthplus/distrib/docs/english/build/html; for i in $(find . -type f); do install -Dm644 "${i}" "${pkgdir}/usr/share/doc/avisynth/${i}"; done) + (cd AviSynthPlus/distrib/docs/english/build/html; for i in $(find . -type f); do install -Dm644 "${i}" "${pkgdir}/usr/share/doc/avisynth/${i}"; done) } |