summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5f12be47dddca1217a2aa347ba0ed1b2e87ea83d (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
# Maintainer: Jon Noble <jonnobleuk@gmail.com>
pkgname=chestnut
pkgver=0.2.0
pkgrel=1
pkgdesc="An open-source NLE video editor "
arch=(x86_64)
url="https://github.com/jonno85uk/chestnut"
license=('GPL3')
groups=()
depends=('ffmpeg' 'qt5-base' 'qt5-multimedia')
makedepends=('git' 'pkgconfig') 
provides=("${pkgname%}")
conflicts=('chestnut-git')
replaces=()
backup=()
options=()
install=
source=("https://github.com/jonno85uk/chestnut/archive/v${pkgver}.tar.gz")
noextract=()
md5sums=('37d4c7daf5a20e8c4621a830bc5d3f1f')

prepare() {
    rm -rf "chestnut"
    tar xaf v${pkgver}.tar.gz
    mv chestnut-${pkgver} chestnut
    cd chestnut
    qmake CONFIG+=release    
}

build() {
    cd "$srcdir/chestnut"
    make
}

check() {
    cd "$srcdir"
}

package() {
    cd "$srcdir/chestnut"
    strip app/main/build/release/chestnut
    make INSTALL_ROOT=${pkgdir} install   
}