diff options
author | Minze Zwerver | 2017-09-30 15:52:34 +0200 |
---|---|---|
committer | Minze Zwerver | 2017-09-30 15:52:34 +0200 |
commit | b7c9110f2798a41e887e31baf2143091e0c6d402 (patch) | |
tree | 782fdf08277fdccc902bcb2274011d203282735e | |
parent | a03d7fb29328d70057b093c80a4093cd31c93edd (diff) | |
download | aur-b7c9110f2798a41e887e31baf2143091e0c6d402.tar.gz |
added -j`nproc` to make
I'm an impatient man.....
-rw-r--r-- | .SRCINFO | 1 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -22,6 +22,7 @@ pkgbase = opentx-companion depends = qt5-multimedia depends = qt5-svg depends = sdl + depends = hicolor-icon-theme provides = companion conflicts = companion conflicts = companion9x-svn @@ -8,7 +8,7 @@ pkgdesc="EEPROM Editor for OpenTX RC transmitter firmwares" arch=('x86_64') url="http://www.open-tx.org/" license=('GPL') -depends=('qt5-base' 'qt5-multimedia' 'qt5-svg' 'sdl') +depends=('qt5-base' 'qt5-multimedia' 'qt5-svg' 'sdl' 'hicolor-icon-theme') makedepends=('cmake' 'xsd' 'bc' 'python' 'avr-gcc' 'avr-libc' 'sed' 'qt5-tools' 'python-pyqt5' 'arm-none-eabi-gcc' 'arm-none-eabi-binutils' 'arm-none-eabi-newlib' 'fox') provides=('companion') conflicts=('companion' 'companion9x-svn') @@ -28,7 +28,7 @@ build() { package() { cd build - make DESTDIR=$pkgdir/ install + make -j`nproc` DESTDIR=$pkgdir/ install cd $pkgdir/usr/share/applications sed -i -e 's/Categories=Application/Categories=Development;/' companion22.desktop sed -i -e 's/Categories=Application/Categories=Development;/' simulator22.desktop |