From 15e0a269dfde7173f3b4608b1ab4b695f4d6d104 Mon Sep 17 00:00:00 2001 From: "C.J. Collier" Date: Thu, 27 Jul 2023 11:27:55 -0700 Subject: [PATCH] Update README.md and .gitignore README.md: added a section on installing dependencies .gitignore: created and included the stock stuff from .git/info/exclude --- .gitignore | 4 ++++ README.md | 17 +++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3dc6e6b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.[oa] +*~ +explore +hdjd diff --git a/README.md b/README.md index 462aa8d..9424438 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,23 @@ How To Get Check the [Github Project](https://github.com/nealey/hdjd) for the canonical source repo. +How to Build +------------ + +Install Dependencies: + +* Debian / Ubuntu + + apt-get install libusb-1.0.0-dev libasound2-dev + +* Rocky / CentOS: + + yum install libusb-devel alsa-lib-devel + +Build hddj: + + make + How To Run ----------