Metadata-Version: 2.4
Name: static-graphviz
Version: 1.2
Summary: Cross platform ffmpeg to work on various systems.
Home-page: https://github.com/zackees/static-graphviz
Author-email: Zach Vorhies <dont@email.me>
Maintainer: Zachary Vorhies
License: MIT
Requires-Python: >=3.10.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: filelock
Requires-Dist: progress
Dynamic: home-page
Dynamic: license-file
Dynamic: maintainer


[![Actions Status](https://github.com/zackees/static_ffmpeg/workflows/MacOS_Tests/badge.svg)](https://github.com/zackees/static_ffmpeg/actions/workflows/push_macos.yml)
[![Actions Status](https://github.com/zackees/static_ffmpeg/workflows/Win_Tests/badge.svg)](https://github.com/zackees/static_ffmpeg/actions/workflows/push_win.yml)
[![Actions Status](https://github.com/zackees/static_ffmpeg/workflows/Ubuntu_Tests/badge.svg)](https://github.com/zackees/static_ffmpeg/actions/workflows/push_ubuntu.yml)


## Update Instructions

#### Ubuntu

Install graphviz as usual with `apt-get install -y graphviz`

```
mkdir -p temp_package/bin
mkdir -p temp_package/lib

# Copy the 'dot' binary
cp -v $(which dot) temp_package/bin/

# Copy all .so dependencies
ldd $(which dot) | awk '{print $3}' | grep '^/' | xargs -I{} cp -v {} temp_package/lib/

# Create the compressed tarball
tar -cJf graphviz-portable.tar.xz -C temp_package .
```
