summaryrefslogtreecommitdiff
path: root/pcr/libubox/PKGBUILD
blob: 99f78db782f3caf7b83d06b8c292b66f7e19cf1a (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
# Maintainer: Nicolás Reynolds <fauno@kiwwwi.com.ar>
pkgname=libubox
pkgver=0.8.0
pkgrel=1
pkgdesc="OpenWRT's Basic Utility Library"
arch=('i686' 'mips64el')
url="https://openwrt.org"
license=('BSD')
makedepends=('git' 'cmake' 'lua51')
source=(git://nbd.name/luci2/libubox.git)
md5sums=(SKIP)

pkgver() {
  cd ${srcdir}/${pkgname}
  local ver="$(git describe --long --tags)"
  printf "%s" "${ver//-/.}"
}

build() {
  cd ${srcdir}/${pkgname}

  cmake -DCMAKE_INSTALL_PREFIX=/usr .
  make
}

package() {
  cd ${srcdir}/${pkgname}
  make DESTDIR=${pkgdir}/ install
}

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