Skip to content

Commit

Permalink
Update create-deb.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanfortner authored Dec 10, 2024
1 parent 19d0c63 commit 18ed94a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion create-deb.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

echo $(nproc)

DIRECTORY=$(pwd)
export DEBIAN_FRONTEND=noninteractive

Expand Down Expand Up @@ -79,7 +81,6 @@ for target in ${targets[@]}; do

if [[ $target == "ARM64" ]]; then
sudo checkinstall -y -D --pkgversion="$DEBVER" --arch="arm64" --provides="box64" --conflicts="$conflict_list" --maintainer="Ryan Fortner <ryankfortner@gmail.com>" --pkglicense="MIT" --pkgsource="https://github.com/ptitSeb/box64" --pkggroup="utils" --pkgname="box64" --install="no" make install || error "Checkinstall failed to create a deb package."
ls | grep box64
else
sudo checkinstall -y -D --pkgversion="$DEBVER" --arch="arm64" --provides="box64" --conflicts="$conflict_list" --maintainer="Ryan Fortner <ryankfortner@gmail.com>" --pkglicense="MIT" --pkgsource="https://github.com/ptitSeb/box64" --pkggroup="utils" --pkgname="box64-$target" --install="no" make install || error "Checkinstall failed to create a deb package."
fi
Expand Down

0 comments on commit 18ed94a

Please sign in to comment.