From bf7695b8d3abdf33c285febc22c582c7b12b4205 Mon Sep 17 00:00:00 2001 From: siddharth Date: Sat, 27 Nov 2021 13:28:05 -0500 Subject: initial commit --- .gitignore | 2 ++ LICENSE | 15 +++++++++++++++ Makefile | 7 +++++++ README.md | 17 +++++++++++++++++ fern.go | 6 ++++++ go.mod | 3 +++ 6 files changed, 50 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 Makefile create mode 100644 README.md create mode 100644 fern.go create mode 100644 go.mod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0acfc01 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +fern +dump/ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fc19d1e --- /dev/null +++ b/LICENSE @@ -0,0 +1,15 @@ +Copyright © 2021 siddharth + +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 +``` diff --git a/fern.go b/fern.go new file mode 100644 index 0000000..25fa8c9 --- /dev/null +++ b/fern.go @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: ISC +// Copyright © 2021 siddharth + +package main + +func main() {} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..d75d586 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module ricketyspace.net/fern + +go 1.15 -- cgit v1.2.3