Skip to content

Commit

Permalink
iceprog added. Version bumped to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Jul 25, 2021
1 parent c291eaf commit e39cc52
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3
0.0.4
25 changes: 25 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ if [ "$ARCH" == "linux_x86_64" ]; then

echo "* Copying Linux files..."
echo ""
# --------------------
# -- System tools
# --------------------

# -- Executables
install $SOURCE_DIR/bin/lsusb $PACKAGE_DIR/bin
Expand All @@ -296,14 +298,24 @@ if [ "$ARCH" == "linux_x86_64" ]; then
install $SOURCE_DIR/lib/libc.so.6 $PACKAGE_DIR/lib
install $SOURCE_DIR/lib/libftdi1.so.2 $PACKAGE_DIR/lib

# ---------------------------
# -- Iceprog
# ---------------------------
# -- Executable
install $SOURCE_DIR/bin/iceprog $PACKAGE_DIR/bin
install $SOURCE_DIR/libexec/iceprog $PACKAGE_DIR/libexec


fi

# --- Files to copy for the MAC platforms
if [ "$ARCH" == "darwin" ]; then

echo "* Copying MAC files..."
echo ""
# --------------------
# -- System tools
# --------------------

# -- Executables
install $SOURCE_DIR/bin/lsusb $PACKAGE_DIR/bin
Expand All @@ -319,6 +331,12 @@ if [ "$ARCH" == "darwin" ]; then
install $SOURCE_DIR/lib/libusb-1.0.0.dylib $PACKAGE_DIR/lib
install $SOURCE_DIR/lib/libftdi1.2.5.0.dylib $PACKAGE_DIR/lib

# ---------------------------
# -- Iceprog
# ---------------------------
install $SOURCE_DIR/bin/iceprog $PACKAGE_DIR/bin
install $SOURCE_DIR/libexec/iceprog $PACKAGE_DIR/libexec

fi


Expand All @@ -327,7 +345,9 @@ if [ "$ARCH" == "windows_amd64" ]; then
echo "* Copying Windows files..."
echo ""

# --------------------
# -- System tools
# --------------------

# -- Executables and libraries
# -- (The dlls are located along with the executables
Expand All @@ -341,6 +361,11 @@ if [ "$ARCH" == "windows_amd64" ]; then
# -- Libraries
install $SOURCE_DIR/lib/libusb-1.0.dll $PACKAGE_DIR/bin
install $SOURCE_DIR/lib/libftdi1.dll $PACKAGE_DIR/bin

# ---------------------------
# -- Iceprog
# ---------------------------
install $SOURCE_DIR/bin/iceprog.exe $PACKAGE_DIR/bin

fi

Expand Down

0 comments on commit e39cc52

Please sign in to comment.