summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4a857bd12400631fd8e72d508b5fbd20002a4ec4 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Maintainer: Rod Kay <rodakay5 at gmail dot com>

pkgname=gnatcoll-core
pkgdesc='Gnat components collection - Core packages.'
pkgver=27.0w
pkgrel=1
epoch=1

url='https://github.com/AdaCore/gnatcoll-core'
arch=(x86_64 aarch64)
license=(GPL-3.0 custom)

depends=(libgpr)
makedepends=(gprbuild-toolbox
             python-sphinx
             python-sphinx_rtd_theme
             texlive-meta)

source=(https://github.com/charlie5/archlinux-gnatstudio-support/raw/refs/heads/main/gnatstudio-sources-2026/gnatcoll-core-src.tar.gz)
sha256sums=(040986aa04626e6f253840bee4c30b219974e72a2f604ed29779e3588122d392)

_gnatcoll_core_src=gnatcoll-core-27.0w-20260324-16311-src


build()
{
   cd $srcdir/$_gnatcoll_core_src

   ADA_FLAGS="$CFLAGS"
   ADA_FLAGS="${ADA_FLAGS//-Wformat}"
   ADA_FLAGS="${ADA_FLAGS//-Werror=format-security}"

   make -j1 BUILD=PROD GPRBUILD_OPTIONS="-R -cargs $ADA_FLAGS -largs $LDFLAGS -gargs"

   make -C docs html latexpdf      \
        1> build-docs-warnings.log \
        2> build-docs-errors.log
}


package()
{
   cd $srcdir/$_gnatcoll_core_src

   # Make one install at a time to avoid GPRinstall reading/writing to
   # the same installed project files at the same time.
   #
   make -j1 prefix=$pkgdir/usr install

   # Install the documentation.
   #
   mkdir -p $pkgdir/usr/share/doc/$pkgname

   cp -r docs/_build/html               $pkgdir/usr/share/doc/$pkgname
   cp    docs/_build/latex/GNATColl.pdf $pkgdir/usr/share/doc/$pkgname

   # Install the license.
   #
   install -D -m644 \
      COPYING3      \
      $pkgdir/usr/share/licenses/$pkgname/COPYING3

   # Install the custom license.
   #
   install -D -m644   \
      COPYING.RUNTIME \
      $pkgdir/usr/share/licenses/$pkgname/COPYING.RUNTIME
}