Skip to content
Snippets Groups Projects

Draft: testing/*: rebuild against ocaml 4.14.1

Closed omni requested to merge omni/aports:rebuild-against-ocaml-4-13 into master
1 file
+ 7
3
Compare changes
  • Side-by-side
  • Inline
@@ -2,17 +2,21 @@
# Maintainer: Fernando Casas Schossow <casasfernando@outlook.com>
pkgname=ocaml-calendar
pkgver=2.04
pkgrel=1
pkgrel=3
pkgdesc="Objective Caml library for managing dates and times"
url="https://forge.ocamlcore.org/projects/calendar/"
# 32-bits fails packaging because of textrels
arch="all !x86 !armv7 !armhf !mips64 !riscv64" # restricted by ocaml
arch="all !mips64 !riscv64" # limited by ocaml aport
license="LGPL-2.1-or-later-WITH-linking-exception"
makedepends="ocaml ocaml-findlib-dev ocaml-ocamldoc gawk"
subpackages="$pkgname-dev $pkgname-doc"
source="https://download.ocamlcore.org/calendar/calendar/$pkgver/calendar-$pkgver.tar.gz"
builddir="$srcdir/calendar-$pkgver"
# 32bit archs
case "$CARCH" in
arm*|x86) options="$options textrels" ;;
esac
build() {
./configure --prefix=/usr --libdir=/usr/lib
make
Loading