{"id":16714818,"url":"https://github.com/jesus89/grunt-appimage","last_synced_at":"2025-03-15T07:48:33.441Z","repository":{"id":57254616,"uuid":"83889764","full_name":"Jesus89/grunt-appimage","owner":"Jesus89","description":"Grunt task to create AppImages","archived":false,"fork":false,"pushed_at":"2017-03-29T22:40:09.000Z","size":416,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-21T22:44:33.226Z","etag":null,"topics":["appimage","grunt","grunt-task","gruntjs"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Jesus89.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-04T11:50:53.000Z","updated_at":"2017-03-06T12:17:28.000Z","dependencies_parsed_at":"2022-08-31T08:21:08.657Z","dependency_job_id":null,"html_url":"https://github.com/Jesus89/grunt-appimage","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jesus89%2Fgrunt-appimage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jesus89%2Fgrunt-appimage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jesus89%2Fgrunt-appimage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jesus89%2Fgrunt-appimage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jesus89","download_url":"https://codeload.github.com/Jesus89/grunt-appimage/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243701313,"owners_count":20333616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["appimage","grunt","grunt-task","gruntjs"],"created_at":"2024-10-12T21:07:14.387Z","updated_at":"2025-03-15T07:48:33.411Z","avatar_url":"https://github.com/Jesus89.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# grunt-appimage [![Build Status](https://travis-ci.org/Jesus89/grunt-appimage.svg?branch=master)](https://travis-ci.org/Jesus89/grunt-appimage)\n\n\u003e Grunt task to create AppImages.\n\nA simple way to automate the creation of GNU/Linux AppImages (http://appimage.org).\n\n[![NPM](https://nodei.co/npm/grunt-appimage.png?)](https://nodei.co/npm/grunt-appimage/)\n\n## Install\n\n```\n$ npm install grunt-appimage --save-dev\n```\n\n## Usage\n\n```js\ngrunt.initConfig({\n  appimage: {\n    myapp: {\n      options: {\n        name: 'MyApp',\n        exec: 'myapp',\n        arch: '64bit',\n        icons: 'path/to/icons',\n        comment: 'Awesome App',\n        archive: 'path/to/MyApp.AppImage'\n        install: true\n      },\n      files: [{\n        src: 'path/to/myapp'\n      }]\n    }\n  }\n});\n```\n\n## Files\n\nStandard grunt files. [More information](https://gruntjs.com/configuring-tasks#files).\n\n## Options\n\n#### name\n*Required*\u003cbr\u003e\nType: `String`\u003cbr\u003e\n\nApplication name.\n\n#### exec\n*Required*\u003cbr\u003e\nType: `String`\u003cbr\u003e\n\nExecutable file path.\n\n#### arch\nType: `String`\u003cbr\u003e\nDefault: `64bit`\n\nAppImage architecture: `32bit`, `64bit`.\n\n#### icons\nType: `String`\u003cbr\u003e\nDefault: `\u003cempty\u003e`\n\nIcons path. [More information](https://github.com/Jesus89/grunt-appimage/wiki/Create-icons).\n\n#### comment\nType: `String`\u003cbr\u003e\nDefault: `\u003cempty\u003e`\n\nComments about the application.\n\n#### archive\n*Required*\u003cbr\u003e\nType: `String` `Function`\u003cbr\u003e\nMode: `AppImage`\n\nThis is used to define where to output the archive. Each target can only have one output file. If the type is a Function it must return a String.\n\n#### install\nType: `Boolean`\u003cbr\u003e\nDefault: `true`\n\nThis flag enables an installation message when the AppImage is launched to install the application (desktop launch and icons).\n\n## Examples\n\n```js\ngrunt.initConfig({\n  appimage: {\n    myapp: {\n      options: {\n        name: 'MyApp'\n        exec: 'myapp',\n        archive: 'dist/MyApp.AppImage'\n      },\n      src: 'dist/MyApp/myapp'\n    }\n  }\n});\n```\n\n```js\ngrunt.initConfig({\n  appimage: {\n    myapp32: {\n      options: {\n        name: 'MyApp'\n        exec: 'app',\n        arch: '32bit'\n        archive: 'dist/MyApp-32.AppImage'\n      },\n      files: [{\n        src: 'dist/MyApp/*'\n      }]\n    },\n    myapp64: {\n      options: {\n        name: 'MyApp'\n        exec: 'app',\n        arch: '64bit'\n        archive: 'dist/MyApp-64.AppImage'\n      },\n      files: [{\n        src: 'dist/MyApp/*'\n      }]\n    }\n  }\n});\n```\n\n```js\ngrunt.initConfig({\n  appimage: {\n    myapp: {\n      options: {\n        name: 'MyApp'\n        exec: 'app',\n        icons: 'res/icons',\n        comment: 'Awesome App',\n        archive: 'dist/MyApp.AppImage',\n        install: false\n      },\n      files: [\n        {src: 'dist/MyApp/*', dot: true},\n        {src: 'dist/extra/*', dest: 'extra/', filter: 'isFile'}\n      ]\n    }\n  }\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjesus89%2Fgrunt-appimage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjesus89%2Fgrunt-appimage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjesus89%2Fgrunt-appimage/lists"}