File PKGBUILD of Package firebird-emu
# Contributor: Antonio Vázquez Blanco <antoniovazquezblanco@gmail.com>
pkgname=firebird-emu
pkgver=1.5
pkgrel=0
pkgdesc='Community emulator of TI-Nspire calculators.'
arch=('i686' 'x86_64')
url='https://github.com/nspire-emus/firebird'
conflicts=('firebird')
license=('GPL-3.0-only')
depends=('qt5-quickcontrols')
makedepends=('qt5-declarative')
source=("$pkgname-$pkgver.tar.xz")
md5sums=('SKIP')
build() {
# Compile...
cd "${srcdir}/${pkgname}-${pkgver}"
mkdir -p build
cd build
qmake .. PREFIX=/usr
make
}
package() {
# Install...
cd "${srcdir}/${pkgname}-${pkgver}/build"
INSTALL_ROOT="${pkgdir}" make install
}