summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d5427c97fac7c52a923f17239f832a0a730e8c88 (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
# Maintainer: Jules PĂ©nuchot <jules@penuchot.com>

_name=tl-optional
_author=TartanLlama

pkgname=${_name}-git
pkgver=1.1.0.r0.g3a1209d
pkgrel=1
pkgdesc="C++11/14/17 std::optional with functional-style extensions and reference support "
arch=('any')
url="https://github.com/${_author}/optional"
license=('CC0')

depends=()
makedepends=('cmake')
provides=('tl-optional')
conflicts=('tl-optional')

source=("$pkgname::git+https://github.com/${_author}/optional.git#branch=master")
sha256sums=('SKIP')

pkgver() {
  cd $pkgname
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//;'
}

prepare() {
  cmake -B build -S ${pkgname} \
        -DCMAKE_BUILD_TYPE='None' \
        -DCMAKE_INSTALL_PREFIX='/usr' \
        -DBUILD_TESTING=OFF \
        -Wno-dev
}

package() {
  make -C build DESTDIR=$pkgdir install
}