Skip to content

Commit

Permalink
Adapt to move to github.
Browse files Browse the repository at this point in the history
Remove unnecessary directory.  Rename import paths in examples.  Update README.
  • Loading branch information
gordonklaus committed Sep 19, 2015
1 parent d1c3ce7 commit b12a00c
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .hgignore
@@ -1,3 +1,3 @@
portaudio/_cgo_export\.h
portaudio/cmd/echo
portaudio/cmd/noise
_cgo_export\.h
cmd/echo
cmd/noise
6 changes: 5 additions & 1 deletion README.md
@@ -1 +1,5 @@
Go bindings for the PortAudio audio I/O library
This package provides an interface to the [PortAudio](http://www.portaudio.com/) audio I/O library. See the [package documentation](http://godoc.org/github.com/gordonklaus/portaudio) for details.

To build this package you must first have the PortAudio development headers and libraries installed. Some systems provide a package for this; e.g., on Ubuntu you would want to run `apt-get install portaudio19-dev`. On other systems you might have to install from source.

Thanks to sqweek for motivating and contributing to host API and device enumeration.
2 changes: 1 addition & 1 deletion portaudio/examples/echo.go → examples/echo.go
@@ -1,7 +1,7 @@
package main

import (
"code.google.com/p/portaudio-go/portaudio"
"github.com/gordonklaus/portaudio"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion portaudio/examples/enumerate.go → examples/enumerate.go
@@ -1,7 +1,7 @@
package main

import (
"code.google.com/p/portaudio-go/portaudio"
"github.com/gordonklaus/portaudio"
"os"
"text/template"
)
Expand Down
2 changes: 1 addition & 1 deletion portaudio/examples/noise.go → examples/noise.go
@@ -1,7 +1,7 @@
package main

import (
"code.google.com/p/portaudio-go/portaudio"
"github.com/gordonklaus/portaudio"
"math/rand"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion portaudio/examples/play.go → examples/play.go
@@ -1,7 +1,7 @@
package main

import (
"code.google.com/p/portaudio-go/portaudio"
"github.com/gordonklaus/portaudio"
"encoding/binary"
"fmt"
"io"
Expand Down
2 changes: 1 addition & 1 deletion portaudio/examples/record.go → examples/record.go
@@ -1,7 +1,7 @@
package main

import (
"code.google.com/p/portaudio-go/portaudio"
"github.com/gordonklaus/portaudio"
"encoding/binary"
"fmt"
"os"
Expand Down
@@ -1,7 +1,7 @@
package main

import (
"code.google.com/p/portaudio-go/portaudio"
"github.com/gordonklaus/portaudio"
"math"
"time"
)
Expand Down
File renamed without changes.
File renamed without changes.
7 changes: 0 additions & 7 deletions portaudio/README

This file was deleted.

0 comments on commit b12a00c

Please sign in to comment.