summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8a215378c521b6e910974e9b0f5421ca7c44096b (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
# Maintainer: Vlad Frolov <frolvlad@gmail.com>

pkgname=owl-git
pkgver=0.0.0
pkgrel=1
pkgdesc='An open Apple Wireless Direct Link (AWDL) implementation written in C'
arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
url=https://owlink.org/
license=('GPL3')
depends=('libpcap' 'libev' 'libnl')
makedepends=('cmake')
source=(
  "$pkgname::git+https://github.com/seemoo-lab/owl.git#branch=master"
  "git+https://github.com/google/googletest.git"
  "git+https://github.com/radiotap/radiotap-library.git"
)
sha512sums=(
  'SKIP'
  'SKIP'
  'SKIP'
)

pkgver() {
  cd "$pkgname"
  ( set -o pipefail
    git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "0.0.0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}

prepare() {
  cd "$pkgname"
  git config submodule.googletest.url $srcdir/googletest
  git config submodule.radiotap.url $srcdir/radiotap-library
  git submodule update --init
}

build() {
  cd "$pkgname"
  mkdir build -p && cd build
  cmake -DCMAKE_INSTALL_PREFIX=/usr ..
  make
}

package() {
  cd "$pkgname/build"
  make DESTDIR="$pkgdir" install

  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" ../COPYING
}

# vim:set ts=2 sw=2 et: