Skip to content

Commit

Permalink
added more libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
walkero-gr committed Jul 11, 2024
1 parent 6855ddc commit 713b124
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
10 changes: 10 additions & 0 deletions ppc-amigaos/scripts/libs/pcre.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/bash
#

echo -e "${CCPINK}${CCBOLD}\n---> Install pcre${CCEND}";
curl -fsSL "https://github.com/AmigaLabs/libs-ports/raw/main/pcre/pcre-8.45.lha" -o /tmp/pcre.lha && \
lha -xfq2 pcre.lha && \
cp -r ./SDK/local/clib2/* ${SDK_PATH}/local/clib2/ && \
cp -r ./SDK/local/newlib/* ${SDK_PATH}/local/newlib/ && \
cp -r ./SDK/local/Documentation/* ${SDK_PATH}/local/Documentation/ && \
rm -rf /tmp/*;
10 changes: 10 additions & 0 deletions ppc-amigaos/scripts/libs/pcre2.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/bash
#

echo -e "${CCPINK}${CCBOLD}\n---> Install pcre2${CCEND}";
curl -fsSL "https://github.com/AmigaLabs/libs-ports/raw/main/pcre2/pcre2-10.42.lha" -o /tmp/pcre2.lha && \
lha -xfq2 pcre2.lha && \
cp -r ./SDK/local/clib2/* ${SDK_PATH}/local/clib2/ && \
cp -r ./SDK/local/newlib/* ${SDK_PATH}/local/newlib/ && \
cp -r ./SDK/local/Documentation/* ${SDK_PATH}/local/Documentation/ && \
rm -rf /tmp/*;
2 changes: 1 addition & 1 deletion ppc-amigaos/scripts/libs/sdl2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#

echo -e "${CCPINK}${CCBOLD}\n---> Install SDL2 SDK${CCEND}";
curl -fsSL "https://github.com/AmigaPorts/SDL/releases/download/v2.28.4-amigaos4/SDL2.lha" -o /tmp/SDL2.lha && \
curl -fsSL "https://github.com/AmigaPorts/SDL/releases/download/v2.30.4-amigaos4/SDL2.lha" -o /tmp/SDL2.lha && \
lha -xfq2 SDL2.lha && \
cp -r ./SDL2/SDK/local/* ${SDK_PATH}/local/ && \
mkdir ${SDK_PATH}/local/Documentation/SDL2 && \
Expand Down

0 comments on commit 713b124

Please sign in to comment.