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

pkgname=dump-shm
pkgrel=1
pkgver=1.1.0
pkgdesc="dump content of a shared memory to stdout"
url="https://github.com/NikolasK-source/dump_shm"
license=('MIT')
arch=('x86_64' 'aarch64')
makedepends=('cmake' 'git')
source=("git+https://github.com/NikolasK-source/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 -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"
}