blob: 31641a55ac2142fb46a5a6ab37498cdda7c35c08 (
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
|
# Maintainer: Paul Black <paul@blackfamily.one>
pkgname=si-edit-git
pkgver=0.0.1
pkgrel=1
pkgdesc="Tools for working with SI files from LEGO Island."
arch=('i686' 'x86_64')
url="https://github.com/itsmattkc/SIEdit"
license=('GPLv3')
depends=('qt5-base' 'qt5-tools' 'qt5-multimedia' 'ffmpeg')
makedepends=('git' 'make' 'cmake')
source=('git+https://github.com/itsmattkc/SIEdit.git')
md5sums=('SKIP')
build() {
cd "$srcdir/SIEdit"
mkdir -p build
cd build
cmake ..
make
}
package() {
cd "$srcdir/SIEdit/build/app"
install -Dm755 si-edit "$pkgdir/usr/bin/si-edit"
}
|