summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 82cbee0d548eded26ab8b970129ceb34775c6079 (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
# Maintainer: Thomas Andres <thomas at andres dot in>
pkgname=openhantek6022-git
_gitname=OpenHantek6022
pkgver=v2.15
pkgrel=1
pkgdesc="A DSO software for Hantek USB digital signal oscilloscopes 6022BE / BL."
arch=('i686' 'x86_64')
url=https://github.com/OpenHantek/OpenHantek6022
license=('GPL3')
depends=('fftw' 'qt5-base')
makedepends=('git' 'cmake' 'make' 'sed' 'binutils' 'gcc' 'gendesk')
conflicts=(openhantek6022 openhantek)
provides=(openhantek6022)
source=('git+https://github.com/OpenHantek/OpenHantek6022.git')
md5sums=('SKIP')

prepare() {
    gendesk -f -n \
        --pkgname "$_gitname" \
        --pkgdesc "$pkgdesc" \
        --name "OpenHantek6022" \
        --exec /usr/bin/OpenHantek \
        --icon "$_gitname" \
        --categories "Development;Science"

    cd $_gitname
    # change the udev directory to match arch defaults
    sed -i 's/\/lib\/udev\/rules.d\//\/usr\/lib\/udev\/rules.d\//g' CMakeLists.txt
}

pkgver() {
    cd $_gitname
    git describe --tags $(git rev-list --tags --max-count=1)
}

build() {
    cd $_gitname
    git checkout $pkgver -q
    [[ ! -d build ]] && mkdir -p build
    cd build
    cmake \
        -DCMAKE_INSTALL_PREFIX=/usr \
        ../
    make -j$(nproc)
}

package() {
    cd $_gitname/build
    make DESTDIR=$pkgdir install
    
    cd $srcdir
    install -Dm644 "$_gitname.desktop" "$pkgdir/usr/share/applications/$_gitname.desktop"
    
    cd $_gitname/openhantek/res/images
    install -Dm644 OpenHantek6022.svg "$pkgdir/usr/share/pixmaps/$_gitname.svg"
}