# Maintainer: catsfood <webe.info@gmx-topmail.de>

pkgname=vbox-starter-qt
pkgver=1.3.0.6
pkgrel=3
pkgdesc="An application to easy start VirtualBox virtual machines from a graphical user interface."
arch=('i686' 'x86_64')
url="https://gitlab.com/catsfood/vbox-starter-qt"
license=('GPL3')
depends=('qt5-base')
makedepends=('cmake' 'gcc' 'qt5-base' 'qt5-tools')
provides=('vbox-starter-qt')
source=("${pkgname}.tar.xz")
md5sums=('SKIP')

build() {
  cd "${pkgname}"
  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr .
  make
}

package() {
  cd "${pkgname}"
  make DESTDIR="$pkgdir" install
}
