File: README.md

package info (click to toggle)
golang-github-twstrike-otr3 0.0~git20161015.0.744856d-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,080 kB
  • sloc: ansic: 127; makefile: 76
file content (25 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (3)
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
# OTR3 [![Build Status](https://travis-ci.org/twstrike/otr3.svg?branch=master)](https://travis-ci.org/twstrike/otr3)
Implements version 3 of the OTR standard. Implements feature parity with libotr 4.1.0.

## API Documentation

[![GoDoc](https://godoc.org/github.com/twstrike/otr3?status.svg)](https://godoc.org/github.com/twstrike/otr3)

## Developing

Before doing any work, if you want to separate out your GOPATH from other projects, install direnv
```
$ brew update
$ brew install direnv
$ echo 'eval "$(direnv hook bash)"' >> ~/.bashrc
```
Then, create a symbolic link to the OTR3 repository
```
ln -s /PathToMyGoPackages/.gopkgs/otr3/src/github.com/twstrike/ .
```

Install all dependencies:

``
./deps.sh
``