mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 07:31:35 +01:00
Fix dependencies to point to the correct package names. Upgrade is necessary to make the package build again. Adopt the package as it's unmaintained. Closes GH-7755
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer:Kevin Daudt <kdaudt@alpinelinux.org>
|
|
pkgname=shotcut
|
|
pkgver=19.04.30
|
|
pkgrel=0
|
|
pkgdesc="Cross-platform video editor"
|
|
url="https://www.shotcut.org"
|
|
arch="all !s390x"
|
|
license="GPL-3.0-or-later"
|
|
depends=""
|
|
makedepends="qt5-qtbase-dev qt5-qtwebkit-dev qt5-qtmultimedia-dev
|
|
qt5-qtwebsockets-dev qt5-qtx11extras-dev ffmpeg-dev mlt-dev
|
|
qt5-qttools-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="shotcut-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz
|
|
shotcut-melt.patch
|
|
"
|
|
builddir="$srcdir/shotcut-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
qmake-qt5 PREFIX="/usr/"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="75ec7392fb0913bf1eb21afdf3609abc50a6ac02903e47fca05873ac23170ff4a3efe89823d534ad3f1ae7939c5828e21e50ea58eed4b9d80a6d47a74ea9754d shotcut-19.04.30.tar.gz
|
|
57063ccb11cb9bd061b807934afe5656d9e1e4a31850de2e60b6a0cdf4741c7975a2a548fdb5e7d2bb0a1e44635adb832d139ac55632a4e7f592952b67d17cfe shotcut-melt.patch"
|