summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7681fd051d29e6c212db421a431d1048e1bd17ba (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
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: oliver at first.in-berlin.de
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Mildred <silkensedai@online.fr>
# Contributor: hpmachining <aur at hpminc dot com>

pkgname=omake
pkgver=0.10.7
pkgrel=1
pkgdesc="A build system designed for scalability and portability"
arch=(x86_64)
url="https://github.com/ocaml-omake/omake"
license=(GPL-2.0-only)
depends=(glibc ncurses readline)
makedepends=(ocaml)
source=("https://github.com/ocaml-omake/omake/archive/refs/tags/omake-${pkgver}.tar.gz")
sha256sums=('ec098107429a419965feab5cee5dfa2996fc3fdc23842d910c314590941cafb8')

build() {
  cd "omake-omake-${pkgver}"
  ./configure -prefix=/usr
    #--mandir=/usr/share/man
  make all
}

package() {
  cd "omake-omake-${pkgver}"
  make INSTALL_ROOT="$pkgdir" install
  mkdir -vp "$pkgdir"/usr/share/
  mv -v "$pkgdir"/usr/man "$pkgdir"/usr/share/
}