summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bf88c1ec0e76c0f43375ad6f9bd95c160a7105c0 (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
# Maintainer: Nikolas Koesling <nikolas@koesling.network>

pkgname=dump-shm
pkgrel=2
pkgver=1.3.1
pkgdesc="dump content of a shared memory to stdout"
url="https://github.com/SHMModbus/dump_shm"
license=('MIT')
arch=('x86_64' 'aarch64')
makedepends=('cmake' 'git' 'cxxopts' 'cxxshm' 'cxxsemaphore')
depends=('cxxshm' 'cxxsemaphore')
source=("git+https://github.com/SHMModbus/dump_shm.git#tag=v${pkgver}")

sha256sums=('SKIP')

prepare() {
    cd dump_shm
    git submodule init
    git submodule update
    mkdir -p build
    cmake -DCMAKE_BUILD_TYPE=Release -DCLANG_FORMAT=OFF -DCOMPILER_WARNINGS=OFF -DCLANG_TIDY=OFF -B build .
}

build() {
    cd dump_shm
    cmake --build build
}

package() {
    cd dump_shm
    install -Dm755 build/dump-shm "${pkgdir}/usr/bin/dump-shm"
    install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}