You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
403 B
Bash

#!/bin/bash
# $1 is the binary location, $2 is the arch, $3 is the svg icon
mkdir tmp
mkdir out
dpkg-deb -R template.deb tmp
sed -i '/Architecture:/d' tmp/DEBIAN/control
echo "Architecture: $2" >> tmp/DEBIAN/control
rm -rf tmp/usr/lib/netsyms-business-station
rsync -rv "$1" tmp/usr/lib/netsyms-business-station
cp "$3" tmp/usr/lib/netsyms-business-station/logo.svg
dpkg-deb -b tmp "out/station_$2.deb"