Files
2025-05-13 06:40:48 -07:00

17 lines
414 B
Bash
Executable File

#!/bin/bash
# Path to the package root directory
PKG_DIR="./splash"
# Calculate installed size in KB
PKG_SIZE=$(du -sk "$PKG_DIR" | cut -f1)
# Update control file
sed -i "/^Installed-Size:/c\Installed-Size: $PKG_SIZE" "$PKG_DIR/DEBIAN/control"
# Build the .deb package
mkdir -p ./build
dpkg-deb --build "$PKG_DIR" ./build/chillcraftos-plymouth-theme.deb
echo "Package built with Installed-Size: $PKG_SIZE KB"