blob: 19c303490ecdcdffe0c643574c29a755e18b17f4 (
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: Hans-Nikolai Viessmann <hans AT viess DOT mn>
# Contributor: Jakob Gahde <j5lx@fmail.co.uk>
# Contributor: Bruno Pagani <archange@archlinux.org>
pkgname=cppo
pkgver=1.7.0
pkgrel=1
pkgdesc="C-style preprocessor for OCaml"
arch=('x86_64')
url="https://github.com/ocaml-community/cppo"
license=('BSD-3-Clause')
depends=('glibc')
optdepends=('ocamlbuild: ocamlbuild plugin')
makedepends=('dune' 'ocamlbuild')
options=('!strip')
source=("https://github.com/ocaml-community/cppo/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('7df72f6f240ec6d4d5bc6bcb2e8cfc825ade11594dc93243f1b821b5766548e1')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
dune build --profile release
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
dune runtest
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
# hmmm, --libdir behaviour changed in dune 3.2.0, it must now be an absolute path?!
DESTDIR="${pkgdir}" dune install --prefix "/usr" --libdir "/usr/lib/ocaml" --docdir "/usr/share/doc"
install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
}
|