Compare commits

...

5 Commits

Author SHA1 Message Date
Manuel 61b9b8b48a upgpkg: bino 2.1-1
upstream release
2023-02-18 22:53:48 +01:00
Manuel adce6c3729 Generically use cmake for build instead of make directly 2022-12-06 22:10:20 +01:00
Manuel da3252c2c6 Revert setting jobs option for make
This option should be set in makepkg.conf instead of being passed by the package
2022-11-23 17:53:52 +01:00
Manuel 1253d464f1 bino: Update description 2022-11-09 18:09:58 +01:00
Manuel ddfdf6c1ce upgpkg: bino 2.0-1
upstream release
2022-11-09 17:38:40 +01:00
3 changed files with 26 additions and 86 deletions

View File

@ -1,23 +1,19 @@
pkgbase = bino
pkgdesc = 3D video player with multi-display support
pkgver = 1.6.8
pkgrel = 4
pkgdesc = A video player with focus on 3D and Virtual Reality
pkgver = 2.1
pkgrel = 1
url = https://bino3d.org/
arch = x86_64
license = GPL3
depends = ffmpeg4.4
depends = freealut
depends = freeglut
depends = glewmx
depends = libass
depends = qt5-base
optdepends = lirc: infrared remote control
source = https://bino3d.org/releases/bino-1.6.8.tar.xz
source = https://bino3d.org/releases/bino-1.6.8.tar.xz.sig
source = ffmpeg4.4.patch
makedepends = cmake
makedepends = qt6-tools
depends = qt6-multimedia
depends = qt6-svg
depends = qvr
source = https://bino3d.org/releases/bino-2.1.tar.gz
source = https://bino3d.org/releases/bino-2.1.tar.gz.sig
validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34
sha512sums = d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc
sha512sums = 6a7e22a311bdfce4fbfb4b0dedebc5524ea08af773d14e6ca235c3693c7aacea40b1941302e2a9c20564a0783b4728b38db9f6cbb727289df668d50dbba0180d
sha512sums = SKIP
sha512sums = f7bf716a6ae12a4542ecaddeaee1078a6c26d9d765db7cc11a1d7b1ae19b295703f5b05e71564f1aad216485b904d81f2670c122e88ab79c7556f5614c0d1639
pkgname = bino

View File

@ -4,36 +4,28 @@
# Contributor: archtux <antonio dot arias99999 at gmail dot com>
pkgname=bino
pkgver=1.6.8
pkgrel=4
pkgdesc='3D video player with multi-display support'
pkgver=2.1
pkgrel=1
pkgdesc='A video player with focus on 3D and Virtual Reality'
arch=('x86_64')
url='https://bino3d.org/'
license=('GPL3')
depends=('ffmpeg4.4' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base')
optdepends=('lirc: infrared remote control')
source=(https://bino3d.org/releases/${pkgname}-${pkgver}.tar.xz{,.sig}
ffmpeg4.4.patch)
sha512sums=('d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc'
'SKIP'
'f7bf716a6ae12a4542ecaddeaee1078a6c26d9d765db7cc11a1d7b1ae19b295703f5b05e71564f1aad216485b904d81f2670c122e88ab79c7556f5614c0d1639')
depends=('qt6-multimedia' 'qt6-svg' 'qvr')
makedepends=('cmake' 'qt6-tools')
source=(https://bino3d.org/releases/$pkgname-$pkgver.tar.gz{,.sig})
sha512sums=('6a7e22a311bdfce4fbfb4b0dedebc5524ea08af773d14e6ca235c3693c7aacea40b1941302e2a9c20564a0783b4728b38db9f6cbb727289df668d50dbba0180d'
'SKIP')
validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
patch -Np1 -i '../ffmpeg4.4.patch'
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \
--prefix=/usr \
--with-qt-version=5 \
#--with-xnvctrl # Enable NVIDIA Quadro SDI output
make
cmake -B build -S "$pkgname-$pkgver" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_TESTING=OFF
cmake --build build
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
DESTDIR="$pkgdir" cmake --install build
}

View File

@ -1,48 +0,0 @@
--- a/configure.ac
+++ b/configure.ac
@@ -143,25 +143,6 @@ if test -z "$PKG_CONFIG"; then
AC_MSG_WARN([please install pkg-config; Debian package: pkg-config])
fi
-dnl FFmpeg
-PKG_CHECK_MODULES([libavformat], [libavformat >= 52.110.0 libavcodec libavutil], [HAVE_LIBAVFORMAT=1], [HAVE_LIBAVFORMAT=0])
-if test "$HAVE_LIBAVFORMAT" != "1"; then
- AC_MSG_WARN([required library libavformat >= 52.110.0 not found:])
- AC_MSG_WARN([$libavformat_PKG_ERRORS])
- AC_MSG_WARN([libavformat >= 52.110.0 is provided by libav >= 0.7 or FFmpeg >= 0.7])
-fi
-PKG_CHECK_MODULES([libavdevice], [libavdevice >= 52.5.0], [HAVE_LIBAVDEVICE=1], [HAVE_LIBAVDEVICE=0])
-if test "$HAVE_LIBAVDEVICE" != "1"; then
- AC_MSG_WARN([required library libavdevice >= 52.5.0 not found:])
- AC_MSG_WARN([$libavdevice_PKG_ERRORS])
- AC_MSG_WARN([libavdevice >= 52.5.0 is provided by libav >= 0.7 or FFmpeg >= 0.7])
-fi
-PKG_CHECK_MODULES([libswscale], [libswscale >= 0.14.1 libavutil], [HAVE_LIBSWSCALE=1], [HAVE_LIBSWSCALE=0])
-if test "$HAVE_LIBSWSCALE" != "1"; then
- AC_MSG_WARN([required library libswscale >= 0.14.1 not found:])
- AC_MSG_WARN([$libswscale_PKG_ERRORS])
- AC_MSG_WARN([libswscale >= 0.14.1 is provided by libav >= 0.7 or FFmpeg >= 0.7])
-fi
AC_CHECK_FUNCS([sysconf])
dnl libass
@@ -400,11 +381,16 @@ UPDATE_DESKTOP_DATABASE=""
AC_ARG_VAR([UPDATE_DESKTOP_DATABASE], [update-desktop-database command])
AC_CHECK_PROGS([UPDATE_DESKTOP_DATABASE], [update-desktop-database])
+dnl ffmpeg4.4 libs
+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" \
- -o "$HAVE_LIBAVFORMAT" != "1" \
- -o "$HAVE_LIBAVDEVICE" != "1" \
- -o "$HAVE_LIBSWSCALE" != "1" \
-o "$HAVE_LIBASS" != "1" \
-o "$HAVE_LIBOPENAL" != "1" \
-o "$HAVE_LIBQTOPENGL" != "1" \