mirror of
https://github.com/isledecomp/SIEdit.git
synced 2025-04-22 01:23:32 -04:00
Added PKGBUILD for Arch users
This commit is contained in:
parent
8fae9087b0
commit
aa1a1a8ade
1 changed files with 27 additions and 0 deletions
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
|
@ -0,0 +1,27 @@
|
|||
# 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"
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue