Skip to content

Commit

Permalink
IpkControlFile: dependencies added
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrounger committed Mar 26, 2019
1 parent f3c4ba2 commit ebbe07c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Binary file modified Builder.exe
Binary file not shown.
5 changes: 3 additions & 2 deletions tools/Builder/IpkControlFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public IpkControlFile(string folder, string version)
public void Generate()
{
string content =
"Package: " + "enigma2-skin-metrixreloaded" + "\n"+
"Package: " + "enigma2-skin-metrixreloaded" + "\n" +
"Version: " + version + "\n" +
"Description: " + "Skin MetrixReloaded" + "\n" +
"Section: " + "skin" + "\n" +
Expand All @@ -30,7 +30,8 @@ public void Generate()
"Architecture: " + "all" + "\n" +
"License: " + "Apache License 2.0" + "\n" +
"Homepage: " + "https://github.com/Scrounger/MetrixReloaded" + "\n" +
"Source: " + "https://github.com/Scrounger/MetrixReloaded";
"Source: " + "https://github.com/Scrounger/MetrixReloaded" + "\n" +
"Depends: " + "enigma2-python (>=vti-14)" + "," + "enigma2-plugin-systemplugins-exteventinfohandler";

System.IO.File.WriteAllText(filename, content);
}
Expand Down

0 comments on commit ebbe07c

Please sign in to comment.