Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use dynamic oasis build
Signed-off-by: John Else <john.else@citrix.com>
  • Loading branch information
johnelse committed Feb 26, 2016
1 parent 0c6d9d1 commit e9e28d1
Show file tree
Hide file tree
Showing 20 changed files with 70 additions and 8,078 deletions.
18 changes: 11 additions & 7 deletions _oasis
@@ -1,12 +1,12 @@
OASISFormat: 0.3
OASISFormat: 0.4
Name: irc-client
Version: 0.3.0
Synopsis: IRC client library
License: MIT
Authors: various
Copyrights: (C) 2013 John Else
BuildTools: ocamlbuild
Plugins: META (0.3)
Plugins: META (0.4), DevFiles (0.4)

Flag lwt
Description: build the Lwt library
Expand Down Expand Up @@ -73,10 +73,14 @@ Test test_parser
Command: $test_parser
WorkingDirectory: test

Document api
AlphaFeatures: ocamlbuild_more_args
Document irc_client_api
Type: ocamlbuild (0.4)
BuildTools: ocamldoc

Title: IRC client library
Type: ocamlbuild (0.3)
BuildTools+: ocamldoc
XOcamlbuildModules: Irc_client, Irc_helpers, Irc_message, Irc_transport
XOcamlBuildPath: doc
XOcamlBuildPath: .
XOCamlbuildExtraArgs:
"-docflags '-colorize-code -short-functors -charset utf-8'"
XOcamlbuildLibraries: irc-client
Install: false
67 changes: 0 additions & 67 deletions _tags

This file was deleted.

27 changes: 27 additions & 0 deletions configure
@@ -0,0 +1,27 @@
#!/bin/sh

# OASIS_START
# DO NOT EDIT (digest: dc86c2ad450f91ca10c931b6045d0499)
set -e

FST=true
for i in "$@"; do
if $FST; then
set --
FST=false
fi

case $i in
--*=*)
ARG=${i%%=*}
VAL=${i##*=}
set -- "$@" "$ARG" "$VAL"
;;
*)
set -- "$@" "$i"
;;
esac
done

ocaml setup.ml -configure "$@"
# OASIS_STOP
7 changes: 0 additions & 7 deletions doc/api.odocl

This file was deleted.

33 changes: 0 additions & 33 deletions lib/META

This file was deleted.

7 changes: 0 additions & 7 deletions lib/client.mldylib

This file was deleted.

7 changes: 0 additions & 7 deletions lib/client.mllib

This file was deleted.

7 changes: 0 additions & 7 deletions lib/irc_client.mldylib

This file was deleted.

7 changes: 0 additions & 7 deletions lib/irc_client.mllib

This file was deleted.

4 changes: 0 additions & 4 deletions lwt/client_lwt.mldylib

This file was deleted.

4 changes: 0 additions & 4 deletions lwt/client_lwt.mllib

This file was deleted.

4 changes: 0 additions & 4 deletions lwt/irc_client_lwt.mldylib

This file was deleted.

4 changes: 0 additions & 4 deletions lwt/irc_client_lwt.mllib

This file was deleted.

0 comments on commit e9e28d1

Please sign in to comment.