diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | LICENSE | 15 | ||||
-rw-r--r-- | Makefile | 7 | ||||
-rw-r--r-- | README.md | 17 | ||||
-rw-r--r-- | fern.go | 6 | ||||
-rw-r--r-- | go.mod | 3 |
6 files changed, 50 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0acfc01 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +fern +dump/ @@ -0,0 +1,15 @@ +Copyright © 2021 siddharth <s@ricketyspace.net> + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted, provided that the +above copyright notice and this permission notice appear in all +copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..43666fb --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +MOD=ricketyspace.net/fern + +fern: fmt + go build + +fmt: + go fmt ${MOD} diff --git a/README.md b/README.md new file mode 100644 index 0000000..ad6e55d --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# fern + +RSS/Atom media feed downloader. + +Depends on [youtube-dl][ydl] for downloading media. + +[ydl]: https://youtube-dl.org + +## building + +requires `make` and `go >= 1.15` + +to build it, just do: + +``` +make +``` @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: ISC +// Copyright © 2021 siddharth <s@ricketyspace.net> + +package main + +func main() {} @@ -0,0 +1,3 @@ +module ricketyspace.net/fern + +go 1.15 |