Update patch for POSIX compliancy
Replace ffmpeg with ffmpeg4.4 dependency that I forgot in the last commit Thanks goes to AUR user @patlefort
This commit is contained in:
parent
77f2b6a0c3
commit
9f35446458
3 changed files with 10 additions and 10 deletions
4
.SRCINFO
4
.SRCINFO
|
@ -1,11 +1,11 @@
|
|||
pkgbase = bino
|
||||
pkgdesc = 3D video player with multi-display support
|
||||
pkgver = 1.6.8
|
||||
pkgrel = 2
|
||||
pkgrel = 3
|
||||
url = https://bino3d.org/
|
||||
arch = x86_64
|
||||
license = GPL3
|
||||
depends = ffmpeg
|
||||
depends = ffmpeg4.4
|
||||
depends = freealut
|
||||
depends = freeglut
|
||||
depends = glewmx
|
||||
|
|
4
PKGBUILD
4
PKGBUILD
|
@ -5,12 +5,12 @@
|
|||
|
||||
pkgname=bino
|
||||
pkgver=1.6.8
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc='3D video player with multi-display support'
|
||||
arch=('x86_64')
|
||||
url='https://bino3d.org/'
|
||||
license=('GPL3')
|
||||
depends=('ffmpeg' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base')
|
||||
depends=('ffmpeg4.4' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base')
|
||||
optdepends=('lirc: infrared remote control')
|
||||
source=(https://bino3d.org/releases/bino-${pkgver}.tar.xz{,.sig}
|
||||
ffmpeg4.4.patch)
|
||||
|
|
|
@ -31,12 +31,12 @@
|
|||
AC_CHECK_PROGS([UPDATE_DESKTOP_DATABASE], [update-desktop-database])
|
||||
|
||||
+dnl ffmpeg4.4 libs
|
||||
+LIBS+=" /usr/lib/libswscale.so.5"
|
||||
+LIBS+=" /usr/lib/libavutil.so.56"
|
||||
+LIBS+=" /usr/lib/libavformat.so.58"
|
||||
+LIBS+=" /usr/lib/libavdevice.so.58"
|
||||
+LIBS+=" /usr/lib/libavcodec.so.58"
|
||||
+CPPFLAGS+=" -I/usr/include/ffmpeg4.4"
|
||||
+LIBS="$LIBS /usr/lib/libswscale.so.5"
|
||||
+LIBS="$LIBS /usr/lib/libavutil.so.56"
|
||||
+LIBS="$LIBS /usr/lib/libavformat.so.58"
|
||||
+LIBS="$LIBS /usr/lib/libavdevice.so.58"
|
||||
+LIBS="$LIBS /usr/lib/libavcodec.so.58"
|
||||
+CPPFLAGS="$CPPFLAGS -I/usr/include/ffmpeg4.4"
|
||||
+
|
||||
dnl Check if all libraries were found
|
||||
if test "$am_cv_func_iconv" != "yes" \
|
||||
|
|
Loading…
Reference in a new issue