blob: 3f0767203978a0a21bfef74d3383a5d922b03d27 (
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
|
# Contributor: Antonio Vázquez Blanco <antoniovazquezblanco@gmail.com>
pkgname=firebird-nspire
pkgver=0.11
pkgrel=1
pkgdesc='Community emulator of TI-Nspire calculators.'
arch=('i686' 'x86_64')
url='https://github.com/nspire-emus/firebird'
conflicts=('nspire_emu')
license=()
depends=()
makedepends=('qt5-declarative')
source=("$pkgname-$pkgver.tar.gz"::'https://github.com/nspire-emus/firebird/archive/v'$pkgver'.tar.gz')
md5sums=('b9751c44ce5eb7badee23be22df81362')
build() {
# Compile...
cd "${srcdir}/${pkgname}"
mkdir -p build
cd build
qmake ..
make
}
package() {
# Install...
cd "${srcdir}/${pkgname}/build"
INSTALL_ROOT="${pkgdir}" make install
}
|