blob: 4e15766eb5d2c9b139b2b39fe9d0953ad9fbaed0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
pkgname=('shotcut')
_srcname='shotcut'
pkgdesc='Video editor'
pkgver='16.08'
pkgrel='1'
arch=('i686' 'x86_64')
url='https://github.com/mltframework/shotcut'
license=('GPL3')
depends=(
'qt5-base'
'qt5-declarative'
'qt5-graphicaleffects'
'qt5-multimedia'
'qt5-quickcontrols'
'qt5-webkit'
'qt5-websockets'
'qt5-x11extras'
'mlt'
'ffmpeg'
'libx264'
'libvpx'
'lame'
'frei0r-plugins'
'ladspa'
)
makedepends=('git')
provides=("${pkgname[0]%-git}")
conflicts=("${pkgname[0]%-git}")
source=(
"${_srcname}::git+${url}.git#tag=v${pkgver}"
'shotcut.desktop'
'melt.patch'
)
sha512sums=(
'SKIP'
'SKIP'
'SKIP'
)
prepare() {
cd "${srcdir}/${_srcname}"
git apply "${srcdir}/melt.patch"
}
build() {
cd "${srcdir}/${_srcname}"
qmake 'CONFIG-=c++11' PREFIX='/usr/'
make
}
package() {
cd "${srcdir}/${_srcname}"
make INSTALL_ROOT="${pkgdir}" install
install -D --mode=644 "${srcdir}/shotcut.desktop" "${pkgdir}/usr/share/applications/shotcut.desktop"
}
|