diff --git a/build.xml b/build.xml index 984c0d6a..80f8faae 100644 --- a/build.xml +++ b/build.xml @@ -846,7 +846,7 @@ - + @@ -973,29 +973,6 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/installer/chocolatey/filebot.nuspec b/installer/chocolatey/filebot.nuspec deleted file mode 100644 index b85ef5b7..00000000 --- a/installer/chocolatey/filebot.nuspec +++ /dev/null @@ -1,30 +0,0 @@ - - - - @{package.name} - @{application.name} - @{application.version} - @{package.developer} - @{package.maintainer} - @{package.synopsis} - @{package.description} - batch rename movie series music subtitles kodi plex admin - @{link.image.logo} - @{package.homepage} - @{link.intro} - @{link.forums} - @{link.bugs} - @{tstamp.year} @{package.developer} - http://www.gnu.org/licenses/gpl-3.0.en.html - false - - - - - - - - - - - \ No newline at end of file diff --git a/installer/chocolatey/tools/chocolateyInstall.ps1 b/installer/chocolatey/tools/chocolateyInstall.ps1 deleted file mode 100644 index 19f06ddf..00000000 --- a/installer/chocolatey/tools/chocolateyInstall.ps1 +++ /dev/null @@ -1,11 +0,0 @@ -$name = '@{package.name}' -$type = 'msi' -$silent = '/quiet' - -$url32 = 'http://downloads.sourceforge.net/project/filebot/filebot/@{release}/@{release}_x86.msi' -$url64 = 'http://downloads.sourceforge.net/project/filebot/filebot/@{release}/@{release}_x64.msi' -$checksum32 = '@{x86.msi.sha256}' -$checksum64 = '@{x64.msi.sha256}' -$algorithm = 'sha256' - -Install-ChocolateyPackage $name $type $silent $url32 $url64 -checksum $checksum32 -checksumType $algorithm -checksum64 $checksum64 -checksumType64 $algorithm diff --git a/installer/chocolatey/tools/chocolateyUninstall.ps1 b/installer/chocolatey/tools/chocolateyUninstall.ps1 deleted file mode 100644 index 32dc3ace..00000000 --- a/installer/chocolatey/tools/chocolateyUninstall.ps1 +++ /dev/null @@ -1,8 +0,0 @@ -$app = Get-WmiObject -Query "SELECT * FROM Win32_Product WHERE Name = '@{application.name}'" - -if ($app -eq $null) { - echo 'FileBot is not installed.' -} else { - $app.Uninstall() - echo 'FileBot has been uninstalled.' -}