Date: Tuesday, May 9, 2023 @ 21:28:26
Author: artafinde
Revision: 1459664
archrelease: copy trunk to community-x86_64
Added:
shotcut/repos/community-x86_64/PKGBUILD
(from rev 1459663, shotcut/trunk/PKGBUILD)
Deleted:
shotcut/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 89 ++++++++++++++++++++++++++++++++-----------------------------
1 file changed, 47 insertions(+), 42 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-05-09 21:28:20 UTC (rev 1459663)
+++ PKGBUILD 2023-05-09 21:28:26 UTC (rev 1459664)
@@ -1,42 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) <[email protected]>
-# Contributor: nfnty <[email protected]>
-
-pkgname=shotcut
-pkgdesc='Cross-platform Qt based Video Editor'
-pkgver=22.12.21
-pkgrel=1
-arch=('x86_64')
-url='https://www.shotcut.org'
-license=('GPL3')
-depends=('qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-multimedia'
- 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-websockets'
'qt5-x11extras'
- 'mlt' 'movit' 'ffmpeg' 'libx264' 'libvpx' 'lame' 'frei0r-plugins'
'ladspa')
-optdepends=('swh-plugins: Several audio filters')
-makedepends=('qt5-tools' 'cmake' 'ninja')
-options=('debug')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz")
-sha512sums=('95ca399657934becedd71c3daa74749bca1b625a0cedf8df4bfd212476602f83f5b807b26ec7c8275ee720e54893102931bf109c95153fc16f348d344e50395b')
-
-build() {
- cd "${pkgname}-${pkgver}"
-
- # https://github.com/mltframework/shotcut/issues/1275
- export CXXFLAGS+=" -DSHOTCUT_NOUPGRADE"
-
- cmake \
- -Bbuild \
- -GNinja \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DSHOTCUT_VERSION=${pkgver}
- cmake --build build --verbose
-
- ninja -C build translations
-}
-
-package() {
- cd "${pkgname}-${pkgver}"
- DESTDIR="${pkgdir}" cmake --install build
-}
-
-# vim:set ft=sh sw=2 sts=2 et:
Copied: shotcut/repos/community-x86_64/PKGBUILD (from rev 1459663,
shotcut/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-05-09 21:28:26 UTC (rev 1459664)
@@ -0,0 +1,47 @@
+# Maintainer: Filipe Laíns (FFY00) <[email protected]>
+# Contributor: nfnty <[email protected]>
+
+pkgname=shotcut
+pkgdesc='Cross-platform Qt based Video Editor'
+pkgver=23.05.07
+pkgrel=1
+arch=('x86_64')
+url='https://www.shotcut.org'
+license=('GPL3')
+depends=('qt6-base' 'qt6-declarative' 'qt6-multimedia' 'qt6-websockets'
'qt6-translations'
+ 'mlt' 'movit' 'ffmpeg' 'libx264' 'libvpx' 'lame' 'frei0r-plugins'
'ladspa')
+optdepends=('swh-plugins: Several audio filters')
+makedepends=('qt6-tools' 'cmake' 'ninja' 'clang')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz")
+sha512sums=('3256df5e9f930b98224ebd419dacfd6e31d59397f216bd85ed24b899da322734225c549ed92f056a80fdd26e07b1dcdfec0fe0a4c637b882b151e576320df1a2')
+
+prepare() {
+ cd "${pkgname}-${pkgver}"
+
+ sed -e 's|${Qt6_LUPDATE_EXECUTABLE}|/usr/lib/qt6/bin/lupdate|' -i
translations/CMakeLists.txt
+}
+
+build() {
+ cd "${pkgname}-${pkgver}"
+
+ # https://github.com/mltframework/shotcut/issues/1275
+ export CXXFLAGS+=" -DSHOTCUT_NOUPGRADE"
+
+ cmake \
+ -Bbuild \
+ -GNinja \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DSHOTCUT_VERSION=${pkgver}
+ cmake --build build --verbose
+
+ ninja -C build translations
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+
+ DESTDIR="${pkgdir}" cmake --install build
+}
+
+# vim:set ft=sh sw=2 sts=2 et: