Skip to content

Commit

Permalink
+libudev-dev to linux pre-reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Apr 13, 2023
1 parent cd65bf7 commit 6ab37b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* [`install.sh`](./install.sh) is delivered when you `curl tea.xyz`.
* This repository also provides the `tea` GitHub Action.

# GitHub Action 0.15.3
# GitHub Action 0.16.0

```yaml
- uses: teaxyz/setup@v0
Expand Down
5 changes: 4 additions & 1 deletion install-pre-reqs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ if test -f /etc/debian_version; then
# https://packages.debian.org/buster/all/netbase/filelist
COMMON="netbase"

# difficult to pkg in our opinion
COMMON="libudev-dev $COMMON"

case $(cat /etc/debian_version) in
jessie/sid|8.*|stretch/sid|9.*)
apt-get --yes install libc-dev libstdc++-4.8-dev libgcc-4.7-dev $COMMON;;
Expand All @@ -17,7 +20,7 @@ if test -f /etc/debian_version; then
bullseye/sid|11.*)
apt-get --yes install libc-dev libstdc++-10-dev libgcc-9-dev $COMMON;;
bookworm/sid|12.*|*)
apt-get --yes install libc-dev libstdc++-11-dev libgcc-10-dev $COMMON;;
apt-get --yes install libc-dev libstdc++-11-dev libgcc-11-dev $COMMON;;
esac
elif test -f /etc/fedora-release; then
yum --assumeyes install libatomic
Expand Down

0 comments on commit 6ab37b3

Please sign in to comment.