update references to andy-miracl fork
This commit is contained in:
@@ -7,8 +7,8 @@ ENV GOPATH=/go
|
|||||||
ENV PATH=$PATH:/usr/local/go/bin:/go/bin
|
ENV PATH=$PATH:/usr/local/go/bin:/go/bin
|
||||||
RUN mkdir -p /go/bin
|
RUN mkdir -p /go/bin
|
||||||
|
|
||||||
ADD . /go/src/github.com/crewjam/go-xmlsec
|
ADD . /go/src/github.com/andy-miracl/go-xmlsec
|
||||||
WORKDIR /go/src/github.com/crewjam/go-xmlsec
|
WORKDIR /go/src/github.com/andy-miracl/go-xmlsec
|
||||||
RUN go get github.com/crewjam/errset
|
RUN go get github.com/crewjam/errset
|
||||||
RUN go build -o /bin/xmldsig ./examples/xmldsig.go
|
RUN go build -o /bin/xmldsig ./examples/xmldsig.go
|
||||||
|
|
||||||
|
|||||||
@@ -90,8 +90,8 @@ RUN curl -sL http://www.aleksey.com/xmlsec/download/xmlsec1-1.2.22.tar.gz | tar
|
|||||||
make -C include install && \
|
make -C include install && \
|
||||||
make install-pkgconfigDATA
|
make install-pkgconfigDATA
|
||||||
|
|
||||||
ADD . /go/src/github.com/crewjam/go-xmlsec
|
ADD . /go/src/github.com/andy-miracl/go-xmlsec
|
||||||
WORKDIR /go/src/github.com/crewjam/go-xmlsec
|
WORKDIR /go/src/github.com/andy-miracl/go-xmlsec
|
||||||
RUN go get github.com/crewjam/errset
|
RUN go get github.com/crewjam/errset
|
||||||
RUN go build -tags static -ldflags '-s -extldflags "-static"' -o /bin/xmldsig ./examples/xmldsig.go
|
RUN go build -tags static -ldflags '-s -extldflags "-static"' -o /bin/xmldsig ./examples/xmldsig.go
|
||||||
RUN ldd /bin/xmldsig || true
|
RUN ldd /bin/xmldsig || true
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# go-xmlsec
|
# go-xmlsec
|
||||||
|
|
||||||
[](http://godoc.org/github.com/crewjam/go-xmlsec) [](https://travis-ci.org/crewjam/go-xmlsec)
|
[](http://godoc.org/github.com/andy-miracl/go-xmlsec) [](https://travis-ci.org/crewjam/go-xmlsec)
|
||||||
|
|
||||||
A partial wrapper for [xmlsec](https://www.aleksey.com/xmlsec).
|
A partial wrapper for [xmlsec](https://www.aleksey.com/xmlsec).
|
||||||
|
|
||||||
@@ -43,12 +43,12 @@ As seems to be the case for many things in the XMLish world, the xmldsig and xml
|
|||||||
This package uses cgo to wrap libxmlsec. As such, you'll need libxmlsec headers and a C compiler to make it work. On linux, this might look like:
|
This package uses cgo to wrap libxmlsec. As such, you'll need libxmlsec headers and a C compiler to make it work. On linux, this might look like:
|
||||||
|
|
||||||
$ apt-get install libxml2-dev libxmlsec1-dev pkg-config
|
$ apt-get install libxml2-dev libxmlsec1-dev pkg-config
|
||||||
$ go get github.com/crewjam/go-xmlsec
|
$ go get github.com/andy-miracl/go-xmlsec
|
||||||
|
|
||||||
On Mac with homebrew, this might look like:
|
On Mac with homebrew, this might look like:
|
||||||
|
|
||||||
$ brew install libxmlsec1 libxml2 pkg-config
|
$ brew install libxmlsec1 libxml2 pkg-config
|
||||||
$ go get github.com/crewjam/go-xmlsec
|
$ go get github.com/andy-miracl/go-xmlsec
|
||||||
|
|
||||||
# Static Linking
|
# Static Linking
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import (
|
|||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/crewjam/go-xmlsec"
|
"github.com/andy-miracl/go-xmlsec"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|||||||
Reference in New Issue
Block a user