Skip to content

Commit

Permalink
Add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolaiSoeborg committed Apr 30, 2019
1 parent 27f4f5e commit b13976e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
Binary file added .github/logo-small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# ELF2deb
<img align="right" src="https://raw.githubusercontent.com/NicolaiSoeborg/ELF2deb/master/.github/logo-small.png" alt="logo" />

Convert any single or multiple executable file(s) to deb package

I.e. this is a AppImage|ELF|executable script|etc to `.deb` script.
I.e. this is script to convert *AppImage|ELF|executable script* to `.deb`.

## Setup

Expand Down
5 changes: 5 additions & 0 deletions elf2deb/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ def get_copyright(args):
license_txt = license_txt.replace("[yyyy]", year)
license_txt = license_txt.replace("[name of copyright owner]", fullname)

# GNU
license_txt = license_txt.replace("<year>", year)
license_txt = license_txt.replace("<name of author>", fullname)
license_txt = license_txt.replace("<program>", args.package_name)

return license_txt


Expand Down

0 comments on commit b13976e

Please sign in to comment.