blob: d96dbb9385bf0ddc91e7f45696f1482a879bb565 (
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
|
# ---------------------------------------------------------------
# Maintainer: Romain Bazile <gromain.baz@gmail.com>
# ---------------------------------------------------------------
pkgname=opencpn-plugin-oesenc-git
pkgver=4.0.5.r117.ga6e904c
pkgrel=1
pkgdesc="O-charts.org plugin for OpenCPN"
arch=('x86_64' 'aarch64')
license=("GPL3")
depends=('opencpn')
conflicts=('opencpn-plugin-oesenc')
makedepends=('cmake' 'git')
url="https://opencpn.org/OpenCPN/plugins/oesenc.html"
source=("$pkgname::git+https://github.com/bdbcat/oesenc_pi.git" "CMakeLists.patch")
sha1sums=('SKIP'
'ef99cd55434a26699a6a35a78bbcd357719ac430')
pkgver() {
cd $pkgname
git describe --long --tags | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd $pkgname
patch --strip=1 --binary -i $srcdir/CMakeLists.patch
mkdir -p build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3 ..
make
}
package() {
cd "$pkgname/build"
DESTDIR="$pkgdir" make install
mkdir -p $pkgdir/etc/udev/rules.d
install -m 644 $srcdir/$pkgname/buildlinux/oeserverd/98-sglock.rules $pkgdir/etc/udev/rules.d/
}
|