44 lines
1.7 KiB
Bash
44 lines
1.7 KiB
Bash
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
|
|
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
|
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
|
|
|
# The build function is executed in the source directory
|
|
# This function is used to compile the source code
|
|
build() {
|
|
meson setup --prefix=/usr -Ddocumentation=true -Dtests=false build
|
|
meson compile -C build
|
|
}
|
|
|
|
_pick() {
|
|
local p="$1" f d; shift
|
|
for f; do
|
|
[ -d "$BPM_WORKDIR"/output_"$p" ] || { echo "Split package $p not found"; exit 1; }
|
|
d="$BPM_WORKDIR"/output_"$p"/"${f#$BPM_OUTPUT}"
|
|
mkdir -p "$(dirname "$d")"
|
|
mv "$f" "$d"
|
|
rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
|
|
done
|
|
}
|
|
|
|
# The package function is executed in the source directory
|
|
# This function is used to move the compiled files into the output directory
|
|
package_libadwaita() {
|
|
meson install -C build --destdir="$BPM_OUTPUT"
|
|
|
|
cd "$BPM_OUTPUT"
|
|
|
|
# Move demo files into split package
|
|
_pick libadwaita-demos usr/bin/adwaita-1-demo
|
|
_pick libadwaita-demos usr/share/applications/org.gnome.Adwaita1.Demo.desktop
|
|
_pick libadwaita-demos usr/share/icons/hicolor/*/apps/org.gnome.Adwaita1.Demo[-.]*
|
|
_pick libadwaita-demos usr/share/metainfo/org.gnome.Adwaita1.Demo.metainfo.xml
|
|
|
|
# Install package license
|
|
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/libadwaita/COPYING
|
|
}
|
|
|
|
package_libadwaita-demos() {
|
|
# Install package license
|
|
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/libadwaita/COPYING
|
|
}
|