diff options
author | Minze Zwerver | 2017-06-05 17:08:35 +0200 |
---|---|---|
committer | Minze Zwerver | 2017-06-05 17:08:35 +0200 |
commit | 1be554a4abfb23fdb3f539262ef4bb71e45ffadc (patch) | |
tree | 470ee9f7bed6fab88b8ad91439617b543551e357 | |
parent | 806edc5a0178090a328805c0bcbb94a1c51ba93f (diff) | |
download | aur-1be554a4abfb23fdb3f539262ef4bb71e45ffadc.tar.gz |
Made some minor adjustments to the builddeps.
Thanx to those pointing them out.
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 10 insertions, 4 deletions
@@ -12,6 +12,8 @@ pkgbase = opentx-companion makedepends = avr-gcc makedepends = avr-libc makedepends = sed + makedepends = qt5-tools + makedepends = python-pyqt5 depends = qt5-base depends = qt5-multimedia depends = qt5-svg @@ -20,7 +22,9 @@ pkgbase = opentx-companion conflicts = companion conflicts = companion9x-svn source = https://github.com/opentx/opentx/archive/2.2.0.tar.gz + source = cmake_version.diff sha256sums = 27a07efcbb7d5759bafea7d8a6d97f910c2830881c0d4c71cbbc7da65446b2cd + sha256sums = 3c2777a7f5261851150652dd0c15aa8900c5f07ab20b19322e6be7dc5450d3c4 pkgname = opentx-companion @@ -9,19 +9,21 @@ arch=('x86_64') url="http://www.open-tx.org/" license=('GPL') depends=('qt5-base' 'qt5-multimedia' 'qt5-svg' 'sdl') -makedepends=('cmake' 'xsd' 'bc' 'python' 'avr-gcc' 'avr-libc' 'sed') +makedepends=('cmake' 'xsd' 'bc' 'python' 'avr-gcc' 'avr-libc' 'sed' 'qt5-tools' 'python-pyqt5') provides=('companion') conflicts=('companion' 'companion9x-svn') source=("https://github.com/opentx/opentx/archive/$pkgver.tar.gz" + "cmake_version.diff" ) -sha256sums=('27a07efcbb7d5759bafea7d8a6d97f910c2830881c0d4c71cbbc7da65446b2cd' +sha256sums=( + '27a07efcbb7d5759bafea7d8a6d97f910c2830881c0d4c71cbbc7da65446b2cd' + '3c2777a7f5261851150652dd0c15aa8900c5f07ab20b19322e6be7dc5450d3c4' ) build() { cd $srcdir/opentx-$pkgver - patch -p1 -i ../../cmake_version.diff + patch -p1 -i ${srcdir}/cmake_version.diff -# cd $srcdir/opentx-$pkgver/ mkdir -p lbuild cd lbuild cmake -DCMAKE_INSTALL_PREFIX=/usr -DFIRMWARE_TARGET=OFF ../ |