Package Details: omake 0.10.3-2

Git Clone URL: https://aur.archlinux.org/omake.git (read-only, click to copy)
Package Base: omake
Description: A build system designed for scalability and portability
Upstream URL: http://projects.camlcity.org/projects/omake.html
Licenses: GPL2
Submitter: None
Maintainer: None
Last Packager: oriba
Votes: 23
Popularity: 0.000000
First Submitted: 2008-04-02 01:27 (UTC)
Last Updated: 2023-04-28 22:36 (UTC)

Dependencies (1)

Required by (3)

Sources (1)

Latest Comments

1 2 Next › Last »

Score_Under commented on 2023-04-28 22:23 (UTC)

The homepage URL has changed: http://projects.camlcity.org/projects/omake.html

hpmachining commented on 2020-05-29 22:08 (UTC)

Here is an updated PKGBUILD that builds 0.10.3

# Maintainer: oliver at first.in-berlin.de
# Former Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Mildred <silkensedai@online.fr>
# Contributor: hpmachining <aur at hpminc dot com>

pkgname=omake
pkgver=0.10.3
pkgrel=1
pkgdesc="A build system designed for scalability and portability"
arch=('x86_64')
url="http://omake.metaprl.org/index.html"
license=('GPL2')
makedepends=('ocaml')
source=(http://download.camlcity.org/download/omake-$pkgver.tar.gz)
sha256sums=('ff3107e9459615ea6526309c533b04815eef60692a20dcd3a6169f5860786d1d')

build() {
  cd "$pkgname-$pkgver"
  ./configure -prefix=/usr
  make all
}

package() {
  cd "$pkgname-$pkgver"
  make INSTALL_ROOT="$pkgdir" install
}

oriba commented on 2020-05-23 21:10 (UTC)

@nojb: if you want to pick up the package, let me know. The I orphan it.

nojb commented on 2016-12-02 09:50 (UTC)

omake does not compile with 4.04.0 (but omake-git does).

nojb commented on 2016-12-02 09:49 (UTC)

omake has a new mantainer, Gerd Stolpmann, and a new webpage: http://projects.camlcity.org/projects/omake.html

suracuto commented on 2015-01-11 13:05 (UTC)

I couldn't compile omake with ocaml 4.02.1-1, so I made change in disable-warnings.patch: https://gist.github.com/suracuto/5453d457c78ea58ab9a3

oriba commented on 2014-02-20 01:30 (UTC)

Hello, picked up the package. It can be created and used, so I hope it's ok as it is. Please drop me a note, if it needs to be enhanced.

oriba commented on 2014-02-20 01:08 (UTC)

hmhh, the omake-hompage is weird: 0.99 is older than 0.9.8.6 ?! http://omake.metaprl.org/index.html

tomoki commented on 2013-11-04 22:24 (UTC)

I made change in disable-warnings.patch. Please use this if you use ocaml 4.01.0. --------------------------------------------------------------------------------- --- OMakefile.orig 2010-10-27 09:42:37.000000000 +0900 +++ OMakefile 2011-06-07 02:52:21.244832088 +0900 @@ -57,7 +57,7 @@ # # OCaml options # -OCAMLFLAGS[] += -w Ae$(if $(OCAML_ACCEPTS_Z_WARNING), z) +OCAMLFLAGS[] += -w Aer-3-29-32..35-37..39-41-44$(if $(OCAML_ACCEPTS_Z_WARNING), z) if $(THREADS_ENABLED) OCAMLFLAGS += -thread export