Skip to content

ALF Automation (Coronet) #245

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: l10n-c2pa-js
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 28 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,35 @@ This library aims to make viewing and verifying C2PA metadata in the browser as

For more information, please view the documentation at https://opensource.contentauthenticity.org/docs/js-sdk/getting-started/overview.

## Getting started
## Prerequisites

This monorepo is managed by [Rush](https://rushjs.io/). To get started:
To build this library on macOS, you must first install LLVM Clang as follows:
1. If you haven't already, install Homebrew:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
1. Install LLVM Clang:
```
brew install llvm
```
1. Add it to your PATH:
```
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
```
For future use, add it to your `.zshrc` file:
```
echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH"' >> ~/.zshrc
```

Verify the installation:
```
llvm-config --version
```
You should see a version number, such as 20.1.3.

## Build

This monorepo is managed by [Rush](https://rushjs.io/). To build the library:

Install Rush:
```
Expand Down
Loading