summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 98448bcf2ecc97edfca899f0a94506c240c687a9 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Maintainer: Justin Vreeland <vreeland.justin@gmail.com>
# Contributor: Streetwalrus <streetwalrus@codewalr.us>
pkgname=sam-ba
pkgver=3.3
pkgrel=2
pkgdesc="Atmel SAM Boot Assistant"
arch=('x86_64')
url="https://github.com/atmelcorp/sam-ba"
license=('GPL2')
depends=('qt5-base' 'qt5-serialport' 'qt5-declarative')
makedepends=('qt5-tools' 'clang')
source=("$pkgname-$pkgver.tar.gz::https://github.com/atmelcorp/sam-ba/archive/v$pkgver.tar.gz"
        "0001-Dont-install-thirdparty-libs.patch"
        "0002-Dont-rely-on-applicationDirPath.patch"
        "0003-Use-newer-qt-version.patch"
        )
md5sums=('480f70a38b783df1e599ccc7bf2090ef'
         '7115eaa32335e755fe4b17277a15ca7e'
         '1fd871ae02809fcbc3095c169f59ce01'
         '93241311e7ce90508b0af8e91fb61559')

prepare() {
  cd "${srcdir}/$pkgname-$pkgver"

  patch -Np1 -i ../0001-Dont-install-thirdparty-libs.patch
  patch -Np1 -i ../0002-Dont-rely-on-applicationDirPath.patch
  patch -Np1 -i ../0003-Use-newer-qt-version.patch
  sed -i -e "s/ jlink//" src/plugins/connection/connection.pro
}

build() {
  cd "${srcdir}/sam-ba-$pkgver"

  mkdir -p build
  cd build

  qmake ../sam-ba.pro
  make
}

package() {
  cd "${srcdir}/sam-ba-$pkgver/build"

  make install INSTALL_ROOT="$PWD/install"

  cd install

  mkdir -p ${pkgdir}/usr/bin
  cp sam-ba ${pkgdir}/usr/bin

  mkdir -p ${pkgdir}/usr/lib/qt/qml
  cp -d lib/* ${pkgdir}/usr/lib
  cp -r qml/SAMBA ${pkgdir}/usr/lib/qt/qml

  mkdir -p ${pkgdir}/usr/share/doc/sam-ba
  rm doc/sam-ba.index
  cp -r doc/* examples ${pkgdir}/usr/share/doc/sam-ba

  mkdir -p ${pkgdir}/usr/share/sam-ba
  cp -r metadata ${pkgdir}/usr/share/sam-ba

  echo -e "\n \033[1;31m The qt library that this package uses has been updated past what
  the upstream project supports. Please keep that in mind when reporting issues. \033[0m\n"
}

# vim:set ts=2 sw=2 et: