fix build steps to include .desktop stuff

This commit is contained in:
Aaron Bieber 2024-08-20 13:29:40 -06:00
parent 77bf16aa58
commit 9aa0810590
No known key found for this signature in database
2 changed files with 10 additions and 7 deletions

View File

@ -1,7 +1,8 @@
Website = "https://github.com/qbit/xintray"
[Details]
Icon = "xintray-logo.png"
Name = "xintray"
ID = "dev.suah.xintray"
Version = "1.0.0"
Icon = "xintray-logo.png"
Name = "xintray"
ID = "dev.suah.xintray"
Version = "1.0.0"
Build = 2

View File

@ -44,12 +44,14 @@
];
buildPhase = ''
${fyne}/bin/fyne build
${fyne}/bin/fyne package
'';
installPhase = ''
mkdir -p $out/bin
cp xintray $out/bin/
mkdir -p $out
pkg="$PWD/xintray.tar.xz"
cd $out
tar --strip-components=1 -xvf $pkg
'';
};
});