blob: 73eac68cf1879b4fd1c3d064b71b475f740f4530 (
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=write-shm
pkgrel=2
pkgver=1.1.1
pkgdesc="Write to a shared memory"
url="https://github.com/SHMModbus/write_shm"
license=('MIT')
arch=('x86_64' 'aarch64')
makedepends=('cmake' 'git' 'cxxopts' 'cxxshm' 'cxxsemaphore')
depends=('cxxshm' 'cxxsemaphore')
source=("git+https://github.com/SHMModbus/write_shm.git#tag=v${pkgver}")
sha256sums=('SKIP')
prepare() {
cd write_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 write_shm
cmake --build build
}
package() {
cd write_shm
install -Dm755 build/write-shm "${pkgdir}/usr/bin/write-shm"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}
|