2023-05-06 11:48:11 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
APP_ID="org.featherwallet.Feather"
|
|
|
|
|
|
|
|
get_store_path() {
|
|
|
|
find gnu/store -maxdepth 1 -type d -name "*$1*" | sort | head -n 1
|
|
|
|
}
|
|
|
|
|
2023-06-28 15:30:29 +00:00
|
|
|
mkdir -p /output/flatpak
|
|
|
|
cd /output/flatpak
|
2023-05-06 11:48:11 +00:00
|
|
|
|
|
|
|
# Create build dir
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
mkdir export
|
|
|
|
cp -a /feather/contrib/flatpak/share export
|
|
|
|
rm -rf export/share/app-info
|
|
|
|
|
|
|
|
# Copy the metadata file
|
|
|
|
cp /feather/contrib/flatpak/metadata .
|
|
|
|
|
|
|
|
mkdir files
|
|
|
|
cd files
|
|
|
|
|
2023-06-28 15:30:29 +00:00
|
|
|
# Extract feather binary
|
|
|
|
unzip /feather-zip
|
|
|
|
|
2023-05-06 11:48:11 +00:00
|
|
|
# Copy metadata
|
|
|
|
cp -a /feather/contrib/flatpak/share .
|
|
|
|
touch --no-dereference --date="@${SOURCE_DATE_EPOCH}" share/metainfo/${APP_ID}.metainfo.xml
|
|
|
|
gzip -c share/metainfo/${APP_ID}.metainfo.xml > share/app-info/xmls/${APP_ID}.xml.gz
|
|
|
|
|
|
|
|
# Extract guix pack
|
|
|
|
tar xf /pack .
|
|
|
|
|
|
|
|
# Get store paths
|
|
|
|
GUIX_PROFILE=$(get_store_path "profile")
|
2023-06-28 15:30:29 +00:00
|
|
|
GUIX_GLIBC=$(get_store_path "glibc")
|
|
|
|
GUIX_FONTCONFIG=$(get_store_path "fontconfig")
|
|
|
|
GUIX_GCC=$(get_store_path "gcc")
|
|
|
|
LN_GUIX_STORE="$(get_store_path "ln-guix-store")/bin/ln-guix-store"
|
2023-05-06 11:48:11 +00:00
|
|
|
|
2023-06-28 15:30:29 +00:00
|
|
|
# Patch Feather binary
|
|
|
|
patchelf --set-interpreter "/${GUIX_GLIBC}/lib/ld-linux-x86-64.so.2" feather
|
|
|
|
patchelf --set-rpath "/${GUIX_GLIBC}/lib:/${GUIX_FONTCONFIG}/lib:/${GUIX_GCC}/lib" feather
|
2023-05-06 11:48:11 +00:00
|
|
|
|
|
|
|
# Fonts
|
|
|
|
# fontconfig looks in /app/share/fonts
|
2023-06-28 15:30:29 +00:00
|
|
|
ln -s "/run/host/fonts" share/fonts
|
|
|
|
ln -s "/run/host/fonts-cache" share/fonts-cache
|
2023-05-06 11:48:11 +00:00
|
|
|
ln -s "/${GUIX_PROFILE}/share/locale" share/locale
|
|
|
|
ln -s "/${GUIX_PROFILE}/share/dbus-1" share/dbus-1
|
|
|
|
ln -s "/${GUIX_PROFILE}/share/xml" share/xml
|
|
|
|
|
2023-06-28 15:30:29 +00:00
|
|
|
# Setup profile symlink
|
|
|
|
ln -s "/${GUIX_PROFILE}" profile
|
2023-05-06 11:48:11 +00:00
|
|
|
|
2023-06-28 15:30:29 +00:00
|
|
|
# Setup startup symlink
|
|
|
|
ln -s "/app/${LN_GUIX_STORE}" startup
|