mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-10 06:42:05 +01:00
12 lines
285 B
Bash
Executable File
12 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rpm="$(find ./ -iname '*.rpm')"
|
|
dir="$(dirname "$rpm")"
|
|
|
|
echo "Adding java dependency to rpm file $rpm in $dir"
|
|
|
|
rpmrebuild -d "$dir" -np --change-spec-requires="echo Requires: java-1.8.0-openjdk-headless" "$rpm"
|
|
|
|
echo "Cleaning up"
|
|
rm -f "$rpm"
|
|
mv "$dir"/*/*'.rpm' "$dir" |