{-# LANGUAGE OverloadedStrings #-} -- | Templates for the bundle. module Distribution.MacOSX.Templates ( plistTemplate ) where import Data.Text ( Text ) -- | Default plist template, based on that in macosx-app from wx (but -- with version stuff removed). plistTemplate :: Text plistTemplate = "\ \\n\ \\n\ \\n\ \\n\ \CFBundleInfoDictionaryVersion\n\ \6.0\n\ \CFBundleIdentifier\n\ \org.haskell.$program\n\ \CFBundleDevelopmentRegion\n\ \English\n\ \CFBundleExecutable\n\ \$program\n\ \CFBundleIconFile\n\ \$iconPath\n\ \CFBundleName\n\ \$program\n\ \CFBundlePackageType\n\ \APPL\n\ \CFBundleSignature\n\ \????\n\ \CFBundleVersion\n\ \1.0\n\ \CFBundleShortVersionString\n\ \1.0\n\ \CFBundleGetInfoString\n\ \$program, bundled by cabal-macosx\n\ \LSRequiresCarbon\n\ \\n\ \CSResourcesFileMapped\n\ \\n\ \\n\ \"