Create packages for Linux distros with extremely simple way. This software is supposed to be used to distribute the small CLI application which has only one executable file. If the application includes multiple libraries, executable commands, you should use another way.
This software is distributed as docker container. Pull following docker containers.
$ docker pull greymd/tar2rpm
$ docker pull greymd/tar2deb
.tar2package.yml
name : <application name>
cmdname : <command name>
summary : <summary of the application>
description : <description of the application>
version : <version of the application>
changelog : <changes from previous version>
url : <url of the application>
author : <author name>
email : <email>
libdir : null
ATTENTION: name must follow this rule.
https://blog.packagecloud.io/eng/2015/07/14/using-dh-make-to-prepare-debian-packages/#understanding-the-package-name-and-version
Following files should be placed on the current directory.
lib and man directories are optional.
bin/* -- executable file(s)
lib/* -- library file(s)
man/*.1 -- man file(s)
.tar2package.yml
Compression
$ tar zcvf myapp.tar.gz -C "$PWD" bin lib man .tar2package.yml
$ cat myapp.tar.gz | docker run -i greymd/tar2rpm > myapp.rpm
$ cat myapp.tar.gz | docker run -i greymd/tar2deb > myapp.deb
yum$ yum install ./myapp.rpm
dpkg$ dpkg -i ./myapp.deb
That's it.
You can additionally specify following parameters.
libdir : ...
libdirPath of library directory.
Commonly the path is /usr/lib but /usr/lib64/ is used instead in some Linux distros with x86_64 environment.
With this option, library directory is unified to specified path.
Content type
Image
Digest
Size
214.2 MB
Last updated
over 6 years ago
docker pull greymd/tar2deb