summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b4ba41db659bf58d6e3cf4144ef6a58dfdbe1243 (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
# Maintainer Severin Glöckner <severin.gloeckner@stud.htwk-leipzig.de>

# Quoting the release notes of ocaml 4.0.9
# »The graphics library was moved out of the compiler distribution.«
# This package contains it.

# v5.1.0 requires dune 2.0 to be in the Arch repository
pkgname=ocaml-graphics
pkgver=5.0.0
pkgrel=1
pkgdesc="Graphics library from OCaml"
arch=('x86_64')
url="https://github.com/ocaml/graphics"
license=('LGPL2.1')
depends=('ocaml>=4.0.9')
makedepends=('dune')
source=("https://github.com/ocaml/graphics/archive/${pkgver}.tar.gz")
sha256sums=('07f5861381f85c2f2c0611a86f483807ce43195959c40963028dafaa3abf33ab')
options=(!strip)

build() {
  cd "${srcdir}/graphics-${pkgver}"

  dune build -p graphics
}


package() {
  cd "${srcdir}/graphics-${pkgver}"
  DESTDIR="${pkgdir}" dune install --prefix "/usr" --libdir "lib/ocaml"

  install -dm755 "${pkgdir}/usr/share/"

  # there's nothing useful inside
  rm -r "${pkgdir}/usr/doc/"

  install -Dm644 "$srcdir"/graphics-$pkgver/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE

  # unfortunately, the files won't be found in the subfolder. Linking them
  cd "${pkgdir}/usr/lib/ocaml/"

  for file in graphics/graphics*
  do
    ln -s graphics/$(basename "$file") $(basename "$file")
  done
}