Si l'on souhaite créer un package 'hellolinux.deb' sur le bureau (par exemple) créer l'architecture suivante :
hellolinux/DEBIAN
hellolinux/usr/bin/hellolinux.sh
hellolinux/usr/lib/hellolinux/hellolinux.jar
hellolinux/usr/lib/hellolinux/dependences.jar
hellolinux/usr/share/doc/hellolinux/hellolinux.gif
dans le fichier 'hellolinux.sh' :
java -jar ../lib/hellolinux/hellolinux.jar
ensuite il faut créer un fichier nommé 'control' dans le répertoire 'hellolinux/DEBIAN' :
Package: hellolinux
Version: 1.0
Section: java
Priority: optional
Architecture: all
Maintainer: Delphives
Description: mon premier package deb
à partir d'un fichier jar
...
...
ensuite sur le bureau lancer la commande :
dpkg --build hellolinux
cela va générer le 'hellolinux.deb' sur le bureau et on peut l'installer :
sudo dpkg -i hellolinux.deb
on peut ensuite lancer l'application :
sh /usr/bin/hellolinux.sh
Aucun commentaire:
Enregistrer un commentaire