11 lines
250 B
Bash
Executable file
11 lines
250 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
VERSION="$1"
|
|
|
|
for ARCH in amd64 arm64; do
|
|
fpm -t deb -p "build/i3-wallpaper-manager-$VERSION-$ARCH.deb" \
|
|
--architecture $ARCH --version "$VERSION" \
|
|
"build/i3-wallpaper-manager-linux-$ARCH=/usr/bin/i3-wallpaper-manager"
|
|
done
|