Skip to content

Commit

Permalink
Release beta 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ydahhrk committed May 20, 2019
1 parent 94e839e commit 1c8759e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 4 deletions.
36 changes: 33 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,43 @@ CMS encoders and decoders.

## Installation

Dependencies:
Installing a release is a lot easier than the git version.

- [asn1c](https://github.com/vlm/asn1c) (Note: A relatively recent version is required. I'm currently using commit [88ed3b5](88ed3b5cf012918bc1084b606b0624c45e0d2191).)
### Installing a release

Requirements:

- HTTP object retriever (`wget` exampled below)
- tar
- A C compiler

Procedure:

```
wget https://github.com/NICMx/libcmscodec/releases/download/beta1/libcmscodec-beta1.tar.gz
tar xvzf libcmscodec-beta1.tar.gz
cd libcmscodec*
./configure
make
sudo make install
```

### Installing the git version

Requirements:

- git
- The autotools (in particular, autoconf must be 2.69 or newer)
- [asn1c](https://github.com/vlm/asn1c) (Note: A relatively recent version is required. I'm currently using commit [88ed3b5](https://github.com/vlm/asn1c/tree/88ed3b5cf012918bc1084b606b0624c45e0d2191).)
- A C compiler

Procedure:

```
git clone https://github.com/NICMx/libcmscodec.git
cd libcmscodec/
./autogen.sh
./configure
make
make install
sudo make install
```
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

AC_PREREQ([2.69])
# TODO change the bug report address
AC_INIT([libcmscodec], [0.0.1], [[email protected]])
AC_INIT([libcmscodec], [beta1], [[email protected]])
AC_CONFIG_SRCDIR([src/libcmscodec/der_encoder.c])
AM_INIT_AUTOMAKE([subdir-objects])

Expand Down

0 comments on commit 1c8759e

Please sign in to comment.