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" Website = "https://github.com/qbit/xintray"
[Details] [Details]
Icon = "xintray-logo.png" Icon = "xintray-logo.png"
Name = "xintray" Name = "xintray"
ID = "dev.suah.xintray" ID = "dev.suah.xintray"
Version = "1.0.0" Version = "1.0.0"
Build = 2

View File

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