Défis libristes

Porter des logiciels libres sous toutes les distributions ;)

Vous n'êtes pas identifié.

Annonce

Promouvoir et soutenir le logiciel libre L'hébergement libre pour les gens libres De la musique pour les gens libres

#1 20-12-2008 20:58:17

leonux
Administrateur

script Xcfa pour Slackware current

Slackware Current, c'est oki mon Claude wink

http://download.tuxfamily.org/defis/tutos/images/slackware.png

On va rendre hommage à la doyenne de toutes les distributions GNU Linux smile

Hors ligne

 

#2 20-12-2008 21:11:52

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Miaaaaaaaouuuuuuuuuuuuu   Psssssssttttttttt  Minou !
J'en veux un comme ça  wink

Hors ligne

 

#3 20-12-2008 21:22:28

leonux
Administrateur

Re: script Xcfa pour Slackware current

Eh eh eh big_smile
J'y suis peut-être allé un peu fort avec la capture d'écran wink

Hors ligne

 

#4 20-12-2008 21:31:45

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Non non, change rien, Magnifique cette panthère, Superbe  wink

Je replace ici le texte approprié  wink

Pour les version TGZ, peut de choses vont fonctionner pour le moment hein  hmm
Regardes cette partie de script :

Code:

#########################################################################################
# PAQUETS TGZ
#########################################################################################
    case "TGZ" {
        print "\n",'PAS ENCORE DE CODE POUR LA GESTION DES PAQUETS TGZ  !!!',"\n\n";
        exit 1;
        
        # Son gestionnaire "évolué" est pkgtool, mais les commandes installpkg, upgradepkg et removepkg suffisent amplement.
        # pkgtool
        # installpkg
        # upgradepkg
        # removepkg
        # netpkg
        
        if ($TypeCpu =~ "x86_64") {
            $LePaquet = PACKAGETGZ_64;
            $ClefDepot = DEPOTTGZ_64;
        } else {
            $LePaquet = PACKAGETGZ_32;
            $ClefDepot = DEPOTTGZ_64;
        }
    }

Hors ligne

 

#5 22-12-2008 10:13:18

leonux
Administrateur

Re: script Xcfa pour Slackware current

Hi Claude,

J'ai peut-être une petite idée wink
A étudier !
Il y a du nouveau sur un certain bloc notes mais chut ! wink
big_smile

Hors ligne

 

#6 22-12-2008 23:08:09

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Salut Jean-Claude,
Je viens de voir le dépôt  TGZ  wink

Restera à savoir ce qu'il est mieux d'utiliser entre:
        # Son gestionnaire "évolué" est pkgtool, mais les commandes installpkg, upgradepkg et removepkg suffisent amplement.
        # pkgtool
        # installpkg
        # upgradepkg
        # removepkg
        # netpkg

Hors ligne

 

#7 23-12-2008 09:07:13

leonux
Administrateur

Re: script Xcfa pour Slackware current

Netpkg concerne Zenwalk (dérivée de Slack), je ne sais pas si c'est portable sous une Slackware d'origine ...

Tu en oublies un, mon Claude wink

Sous Slackware, un nouvel outil a faire son apparition en testing :  ..
Slackpkg

Ce nouveau programme permet aisément de passer d'une version à une autre (j'en ai fait l'expérience en migrant d'une version 12.1 vers la current). Les fonctions sont plus avancées ..

Il existe cependant deux limites, le logiciel ne peut gérer qu'un seul dépôt à la fois pour le moment et ne gère pas les dépendances ..

Mon idée (je ne sais pas si elle est bonne), utiliser un bout de code de ce Slackpkg pour l'adjoindre à ton script ..
les avantages :
- avoir un dépôt spécifique xcfa
- gérer les installations à partir de ce dépôt et ne pas avoir à télécharger avec wget ..
- l'installation des progs se feraient avec la commande

Code:

# slackpkg install package

le dernier avantage ?
Ben, comme je sais qu'on partage le même point de vue à ce sujet et si nous trouvons un moyen de perfectionner un peu Slackpkg au passage, nous ne manquerons pas d'en avertir le dev wink

T'es partant ?

Hors ligne

 

#8 23-12-2008 09:30:08

leonux
Administrateur

Re: script Xcfa pour Slackware current

Un petit peu de pub :

un peu d'histoire
Slackware Linux
Portail francophone de la distribution Slackware
Un autre très bon site !

http://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Slackware-mascot.png/180px-Slackware-mascot.png
C'est pas tous les jours qu'on en a l'occasion alors, je ne m'en prive pas smile

En tout cas, Xcfa sous Slackware, ça marche !

http://download.tuxfamily.org/defis/tutos/images/xcfa_slack_current.png

Mais, y'a encore du boulot, hein ? wink

Hors ligne

 

#9 23-12-2008 10:52:09

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Et comment que je suis partant pour [ slackpkg ]  wink

Hop, je modifie le code Perl ...

PS:
Faudra que je fasse de la place sur mes disques pour pouvoir installer en dur cette nouvelle [ Slackware 12.2 ].

Reconnaissance de [ slackpkg ] (pour l'instant)  wink

Code:

#########################################################################################
# PAQUETS TGZ
#########################################################################################
    case "TGZ" {
        my $slackpkg = le_fichier_est_present("slackpkg");
        
        if ($slackpkg =~ "OUI") {
            print "slackpkg est présent\n";
            $apt_install = 'slackpkg install';
        } else {
            print "slackpkg est absent\n";
            exit 1;
        }
                
        # Son gestionnaire "évolué" est pkgtool, mais les commandes installpkg, upgradepkg et removepkg suffisent amplement.
        # pkgtool
        # installpkg
        # upgradepkg
        # removepkg
        # netpkg
        # Slackpkg
        #
        
        if ($TypeCpu =~ "x86_64") {
            $LePaquet = PACKAGETGZ_64;
            $ClefDepot = DEPOTTGZ_64;
        } else {
            $LePaquet = PACKAGETGZ_32;
            $ClefDepot = DEPOTTGZ_32;
        }
    }
}

Un premier test en mode utilisateur pour voir  wink

Le dossier Perl  et le fichier  xcfa_install_all_0_5_2.pl

Hors ligne

 

#10 23-12-2008 11:26:25

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Je suis entrain de faire un:

Code:

wget ftp://ftp.lip6.fr/pub/linux/distributions/slackware/slackware-12.2-iso/slackware-12.2-install-d1.iso

C'est apparemment une version 32 bits !
Y a pas de version 64 ?

Hors ligne

 

#11 23-12-2008 11:38:36

leonux
Administrateur

Re: script Xcfa pour Slackware current

Faudra que je fasse de la place sur mes disques pour pouvoir installer en dur cette nouvelle [ Slackware 12.2 ].

C'est ce que je voulais faire au départ mais ça me privait de mon serveur "maison" dès le reboot ..  wink

Le concepteur de Slackpkg risque de devenir un de tes potes, il met à dispo une version Gnome pour Slackware .. wink
http://linux.slashdot.org/article.pl?si … 15/0220212
Gnome est absent de la Slackware 12.2 ..

Je t'ai mis les sources de Slackpkg ICI
J'ai honteusement décompressé le paquet tgz puis l'ai recompressé en tar.gz pour que tu puisses le lire wink
C'est écrit en bash ..

Hors ligne

 

#12 23-12-2008 12:53:06

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Merci pour le paquet  : Ca me fera l'occasion de tester kde et gnome  wink
Je pense avoir le temps pour cette install entre Noël et le jour de l'an !

J'etais quand trop pressé d'installer la dernière Slackware mais la 12.2 merde chez moi  hmm
Problème de support malgré un regravage   hmm
Hop, j'ai trouvé, l'un de mes graveurs qui merde  hmm
J'ai effectué une install mais apparemment, il faut au moins deux cd !
Bon, j'y retourne  wink

Quelle url as tu utilisé Jean-Claude, pour le téléchargement  ?

Hors ligne

 

#13 23-12-2008 17:15:57

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Je n'ai pas assez documenté le code  hmm
Mes notes ci-dessous sont elles correctes Jean-Claude  ?

Code:

#########################################################################################
#
# Script d'installation des programmes tiers pour XCFA pour:
#    Debian          : apt-get ou aptitude
#    Mandriva        : urpmi ou rpm
#    Fedora          : zypper ou urpmi
#    OpenSuse        : yum
#    Slackware       : slackpkg
#    ?
#
#########################################################################################

Hors ligne

 

#14 23-12-2008 18:02:37

leonux
Administrateur

Re: script Xcfa pour Slackware current

Euh, non, c'est pas ça, Claude

Code:

Script d'installation des programmes tiers pour XCFA pour:
#    Debian          : apt-get ou aptitude
#    Mandriva        : urpmi ou rpm (de préférence urpmi)
#    Fedora          : yum ou rpm (de préférence Yum)
#    OpenSuse        : zypper 
#    Slackware       : slackpkg (mais peut-être la série installpkg etc ..)
#    ?
#

Je vais essayer de te faire un petit tableau des correspondances ..
J'étais en train de faire des courses sur Torcs, eh eh big_smile

Hors ligne

 

#15 23-12-2008 20:33:27

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

J'ai l'impression qu'il me faut plus de deux cd pour une intall correcte de Slackware  hmm
Je remet le couvert en fin de semaine parce que là, je n'ai plus trop le temps !

PS:
Merci pour la rectif du tableau wink

Hors ligne

 

#16 23-12-2008 21:44:11

leonux
Administrateur

Re: script Xcfa pour Slackware current

Hi Claude,

J'ai l'impression qu'il me faut plus de deux cd pour une intall correcte de Slackware

Tout à fait, un DVD est plus adapté surtout si tu veux tous les outils (installation all)

Ah, voilà, il me semblait bien avoir trouvé un tableau très bien fait sur un site, je ne sais plus lequel hmm
Tableau comparatif des commandes d'install et gestion des paquets sous différentes distributions

Y'a peut-être quelque trucs à mettre à jour mais globalement, c'est très correct ..

Hors ligne

 

#17 25-12-2008 19:17:29

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Hi Jean-Claude,
Hop, chargement du dvd dès ce soir : ce sera effectivement plus simple  wink

Super pour les correspondances : Merci  wink

Hors ligne

 

#18 26-12-2008 16:53:01

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

HI Jean-Claude,
C'est good : Mon système Slackware 12.2 est installé  wink
Il m'aura fallut reprendre à la main la config du réseau  hmm

J'ai découvert qu'il faut une base de donnée obligatoire pour [ slackpkg ] qui install sans emcombre les programmes depuis la toile MAIS impossible d'effectuer une install en local avec ce programme  hmm
Exemple (en local) :
     # slackpkg install ./xcfa_...tgz
ne fonctionne pas  hmm
IL va me fallolir regarder pour la série des installpkg ...

Je viens d'installer gnome sous ma Slackware 12.2 via:
http://www.droplinegnome.org/

Pour une install correcte de mplayer, j'ai ajouté une ou deux choses à la liste depuis:
http://download.tuxfamily.org/defis/paq … p_mplayer/


Je pense que le script est ok !

Code:

 ______________________________________________________________________
|                                                                      |
|          xcfa_install_all.pl                    0.5.4                |
|______________________________________________________________________|
|                                                                      |
|  Script d'installation des programmes tiers nécessaires pour XCFA    |
|                                                                      |
|     Script créé par:                                                 |
|     -b52         http://www.xcfa.tuxfamily.org/                      |
|     -leonux      http://ubunteros.tuxfamily.org/                     |
|     -Guillaume                                                       |
|     Licence GPL 2                                                    |
|______________________________________________________________________|
|                                                                      |
|      VOUS ETES ADMINISTRATEUR : ET L'INSTALLATION S'EFFECTUERA       |
|      Pour une simulation, connectez vous en simple utilisateur       |
|______________________________________________________________________|

Type de CPU: i686
Type de paquet utilise: TGZ
slackpkg est present
installpkg est present

#*******************************************************************
# INSTALLATION DE xcfa
#*******************************************************************
wget --quiet --directory-prefix=/root/SOURCES_LIST/REP_DOWNLOAD http://download.tuxfamily.org/xcfaudio/xcfa_beta/xcfa-3.4.0~beta3_i386.tgz
installpkg /root/SOURCES_LIST/REP_DOWNLOAD/xcfa-3.4.0~beta3_i386.tgz
Installing package xcfa-3.4.0~beta3_i386... 
PACKAGE DESCRIPTION:
Executing install script for xcfa-3.4.0~beta3_i386...


#***************************************************************************
#  C H O I X   D E S   A P P L I C A T I O N S   A   I N S T A L L E R  ...
#***************************************************************************
DEJA INSTALLE:    notify-send ....... A program to send desktop notifications 
DEJA INSTALLE:    aacplusenc ........ AAC+ encoder 
DEJA INSTALLE:    mp3gain ........... Normaliseur de fichier mp3 
DEJA INSTALLE:    mpg321 ............ Conversion mp3 : wav 
DEJA INSTALLE:    wavsplit .......... Decoupage de fichiers sans decodage 
DEJA INSTALLE:    mp3splt ........... Decoupage de fichiers sans decodage 
DEJA INSTALLE:    cuebreakpoints .... Decoupage de fichiers sans decodage 
DEJA INSTALLE:    vorbisgain ........ Normaliseur de fichier ogg 
DEJA INSTALLE:    mppdec ............ MPC Decodeur 
DEJA INSTALLE:    mppenc ............ MPC Encodeur 
DEJA INSTALLE:    mac ............... Monkey's Audio 
DEJA INSTALLE:    shorten ........... Forte compression au format wave 
DEJA INSTALLE:    w64codecs ......... Codecs video non supportes par mplayer / PAS INDISPENSDABLE 
DEJA INSTALLE:    normalize ......... Normaliseur de fichier wav 
DEJA INSTALLE:    mp3_check ......... Cherche des renseignements sur les formats mp3 
DEJA INSTALLE:    convert ........... [imagemagick] Manipulation de formats d'images 
DEJA INSTALLE:    mplayer ........... Lecteur et extracteur 
DEJA INSTALLE:    faac .............. Audio Codeur freeware 
DEJA INSTALLE:    faad .............. MPEG-4 AAC decodeur 
DEJA INSTALLE:    sox ............... Transformation universelle de fichiers son 
DEJA INSTALLE:    ps2pdf ............ Conversion  fichier  *.PS vers  *.PDF 
DEJA INSTALLE:    oggenc ............ [Vorbis-tools] Conversion wav : ogg 
DEJA INSTALLE:    lame .............. Conversion wav : mp3 
DEJA INSTALLE:    flac .............. Conversion wav : flac 
DEJA INSTALLE:    wavpack ........... [wavpack] WAVPACK  Hybrid Lossless Audio Compressor 
DEJA INSTALLE:    lsdvd ............. Cherche les informations d'un dvd 
DEJA INSTALLE:    cdparanoia ........ Extracteur cd audio 
DEJA INSTALLE:    shntool ........... Decoupage de fichiers sans decodage 
DEJA INSTALLE:    abcde ............. Recherche les infos d'un cd audio 
DEJA INSTALLE:    cdda2wav .......... Extracteur cd audio


Le script est prêt  wink


Le dossier Perl  et le fichier  xcfa_install_all_0_5_4.pl

Hors ligne

 

#19 27-12-2008 12:48:03

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Et voici la toute nouvelle version prenant en compte les dépendances de mplayer  wink


Le dossier Perl  et le fichier  xcfa_install_all_0_5_5.pl

Hors ligne

 

#20 27-12-2008 15:36:13

leonux
Administrateur

Re: script Xcfa pour Slackware current

hop ! me revoilou ! smile

la version en utilisateur simple :

Code:

$ ./xcfa_install_all_0_5_5.pl
 ______________________________________________________________________
|                                                                      |
|          xcfa_install_all.pl                    0.5.5                |
|______________________________________________________________________|
|                                                                      |
|  Script d'installation des programmes tiers nécessaires pour XCFA    |
|                                                                      |
|     Script créé par:                                                 |
|     -b52         http://www.xcfa.tuxfamily.org/                      |
|     -leonux      http://ubunteros.tuxfamily.org/                     |
|     -Guillaume                                                       |
|     Licence GPL 2                                                    |
|______________________________________________________________________|
|                                                                      |
|   VOUS N'ETES PAS ADMINISTRATEUR : UNE SIMULATION SERA EFFECTUEE     |
|   Pour une installation, connectez vous en administrateur            |
|______________________________________________________________________|

Type de CPU: i686
Type de paquet utilise: TGZ
slackpkg est present
installpkg est present

#*******************************************************************
# INSTALLATION DE xcfa
#*******************************************************************

#***************************************************************************
#  C H O I X   D E S   A P P L I C A T I O N S   A   I N S T A L L E R  ...
#***************************************************************************
Installation de:  libnotify-bin ..... A program to send desktop notifications ----------------------> [O/n] ? o
Installation de:  aacplusenc ........ AAC+ encoder -------------------------------------------------> [O/n] ? o
Installation de:  mp3gain ........... Normaliseur de fichier mp3 -----------------------------------> [O/n] ? o
DEJA INSTALLE:    mpg321 ............ Conversion mp3 : wav
Installation de:  wavsplit .......... Decoupage de fichiers sans decodage --------------------------> [O/n] ? o
Installation de:  mp3splt ........... Decoupage de fichiers sans decodage --------------------------> [O/n] ? o
Installation de:  cuetools .......... Decoupage de fichiers sans decodage --------------------------> [O/n] ? o
Installation de:  vorbisgain ........ Normaliseur de fichier ogg -----------------------------------> [O/n] ? o
Installation de:  mpc123 ............ MPC Decodeur -------------------------------------------------> [O/n] ? o
Installation de:  mppenc ............ MPC Encodeur -------------------------------------------------> [O/n] ? o
Installation de:  mac ............... Monkey's Audio -----------------------------------------------> [O/n] ? o
Installation de:  shorten ........... Forte compression au format wave -----------------------------> [O/n] ? o
DEJA INSTALLE:    w64codecs ......... Codecs video non supportes par mplayer / PAS INDISPENSDABLE
DEJA INSTALLE:    normalize ......... Normaliseur de fichier wav
Installation de:  checkmp3 .......... Cherche des renseignements sur les formats mp3 ---------------> [O/n] ? o
DEJA INSTALLE:    convert ........... [imagemagick] Manipulation de formats d'images
DEJA INSTALLE:    mplayer ........... Lecteur et extracteur
Installation de:  faac .............. Audio Codeur freeware ----------------------------------------> [O/n] ? o
Installation de:  faad2 ............. MPEG-4 AAC decodeur ------------------------------------------> [O/n] ? o
DEJA INSTALLE:    sox ............... Transformation universelle de fichiers son
DEJA INSTALLE:    ps2pdf ............ Conversion  fichier  *.PS vers  *.PDF
DEJA INSTALLE:    oggenc ............ [Vorbis-tools] Conversion wav : ogg
DEJA INSTALLE:    lame .............. Conversion wav : mp3
DEJA INSTALLE:    flac .............. Conversion wav : flac
DEJA INSTALLE:    wavpack ........... [wavpack] WAVPACK  Hybrid Lossless Audio Compressor
Installation de:  lsdvd ............. Cherche les informations d'un dvd ----------------------------> [O/n] ? o
DEJA INSTALLE:    cdparanoia ........ Extracteur cd audio
Installation de:  shntool ........... Decoupage de fichiers sans decodage --------------------------> [O/n] ? o
DEJA INSTALLE:    abcde ............. Recherche les infos d'un cd audio
DEJA INSTALLE:    cdda2wav .......... Extracteur cd audio

#*******************************************************************
#  I N S T A L L A T I O N  D E S   A P P L I C A T I O N S...
#*******************************************************************

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/libnotify-0.4.4-i686-4as.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/libnotify-0.4.4-i686-4as.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/fftw-3.1.2-i486-2kjz.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/fftw-3.1.2-i486-2kjz.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/aacplusenc-0.17.3_i386.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/aacplusenc-0.17.3_i386.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mp3gain-1.4.6-i486-48.1.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mp3gain-1.4.6-i486-48.1.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/wavsplit-1.1.0.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/wavsplit-1.1.0.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mp3splt-2.2.1-i486-1sl.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mp3splt-2.2.1-i486-1sl.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/cuetools-1.3.1-i486-1an.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/cuetools-1.3.1-i486-1an.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/vorbisgain-0.36-i486-48.1.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/vorbisgain-0.36-i486-48.1.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/musepack-decoder-7.1.95z67_i386.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/musepack-decoder-7.1.95z67_i386.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mppenc-1.16-i486-1as.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mppenc-1.16-i486-1as.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mac-3.99_u4_b5-i486-2sy.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mac-3.99_u4_b5-i486-2sy.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/shorten-3.6.1-i486-2as.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/shorten-3.6.1-i486-2as.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mp3_check-1.98-i486-48.1.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mp3_check-1.98-i486-48.1.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/faac-1.26-i486-3sl.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/faac-1.26-i486-3sl.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/faad2-2.6.1-i486-2sl.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/faad2-2.6.1-i486-2sl.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/lsdvd-0.16-i486-2sl.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/lsdvd-0.16-i486-2sl.tgz

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/shntool-3.0.8-i486-2bj.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/shntool-3.0.8-i486-2bj.tgz


============================
 !  MERCI POUR LES TESTS  !
============================

je lance en root ! wink

Hors ligne

 

#21 27-12-2008 15:40:43

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Il va de soi que pour activer l'installation des dépendances de mplayer, il ne faut pas que mplayer soit installé hein  !

Hors ligne

 

#22 27-12-2008 15:41:26

leonux
Administrateur

Re: script Xcfa pour Slackware current

Un su plus tard wink

Code:

$ su
# ls
xcfa_install_all_0_5_5.pl
bash-3.1# ./xcfa_install_all_0_5_5.pl
 ______________________________________________________________________
|                                                                      |
|          xcfa_install_all.pl                    0.5.5                |
|______________________________________________________________________|
|                                                                      |
|  Script d'installation des programmes tiers nécessaires pour XCFA    |
|                                                                      |
|     Script créé par:                                                 |
|     -b52         http://www.xcfa.tuxfamily.org/                      |
|     -leonux      http://ubunteros.tuxfamily.org/                     |
|     -Guillaume                                                       |
|     Licence GPL 2                                                    |
|______________________________________________________________________|
|                                                                      |
|      VOUS ETES ADMINISTRATEUR : ET L'INSTALLATION S'EFFECTUERA       |
|      Pour une simulation, connectez vous en simple utilisateur       |
|______________________________________________________________________|

Type de CPU: i686
Type de paquet utilise: TGZ
slackpkg est present
installpkg est present

#*******************************************************************
# INSTALLATION DE xcfa
#*******************************************************************
wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/xcfaudio/xcfa_beta/xcfa-3.4.0~beta3_i386.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/xcfa-3.4.0~beta3_i386.tgz
Installing package xcfa-3.4.0~beta3_i386...
PACKAGE DESCRIPTION:
Executing install script for xcfa-3.4.0~beta3_i386...


#***************************************************************************
#  C H O I X   D E S   A P P L I C A T I O N S   A   I N S T A L L E R  ...
#***************************************************************************
Installation de:  libnotify-bin ..... A program to send desktop notifications ----------------------> [O/n] ? o
Installation de:  aacplusenc ........ AAC+ encoder -------------------------------------------------> [O/n] ? o
Installation de:  mp3gain ........... Normaliseur de fichier mp3 -----------------------------------> [O/n] ? o
DEJA INSTALLE:    mpg321 ............ Conversion mp3 : wav
Installation de:  wavsplit .......... Decoupage de fichiers sans decodage --------------------------> [O/n] ? o
Installation de:  mp3splt ........... Decoupage de fichiers sans decodage --------------------------> [O/n] ? o
Installation de:  cuetools .......... Decoupage de fichiers sans decodage --------------------------> [O/n] ? o
Installation de:  vorbisgain ........ Normaliseur de fichier ogg -----------------------------------> [O/n] ? o
Installation de:  mpc123 ............ MPC Decodeur -------------------------------------------------> [O/n] ? o
Installation de:  mppenc ............ MPC Encodeur -------------------------------------------------> [O/n] ? o
Installation de:  mac ............... Monkey's Audio -----------------------------------------------> [O/n] ? o
Installation de:  shorten ........... Forte compression au format wave -----------------------------> [O/n] ? o
DEJA INSTALLE:    w64codecs ......... Codecs video non supportes par mplayer / PAS INDISPENSDABLE
DEJA INSTALLE:    normalize ......... Normaliseur de fichier wav
Installation de:  checkmp3 .......... Cherche des renseignements sur les formats mp3 ---------------> [O/n] ? o
DEJA INSTALLE:    convert ........... [imagemagick] Manipulation de formats d'images
DEJA INSTALLE:    mplayer ........... Lecteur et extracteur
Installation de:  faac .............. Audio Codeur freeware ----------------------------------------> [O/n] ? o
Installation de:  faad2 ............. MPEG-4 AAC decodeur ------------------------------------------> [O/n] ? o
DEJA INSTALLE:    sox ............... Transformation universelle de fichiers son
DEJA INSTALLE:    ps2pdf ............ Conversion  fichier  *.PS vers  *.PDF
DEJA INSTALLE:    oggenc ............ [Vorbis-tools] Conversion wav : ogg
DEJA INSTALLE:    lame .............. Conversion wav : mp3
DEJA INSTALLE:    flac .............. Conversion wav : flac
DEJA INSTALLE:    wavpack ........... [wavpack] WAVPACK  Hybrid Lossless Audio Compressor
Installation de:  lsdvd ............. Cherche les informations d'un dvd ----------------------------> [O/n] ? o
DEJA INSTALLE:    cdparanoia ........ Extracteur cd audio
Installation de:  shntool ........... Decoupage de fichiers sans decodage --------------------------> [O/n] ? o
DEJA INSTALLE:    abcde ............. Recherche les infos d'un cd audio
DEJA INSTALLE:    cdda2wav .......... Extracteur cd audio

#*******************************************************************
#  I N S T A L L A T I O N  D E S   A P P L I C A T I O N S...
#*******************************************************************

wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/libnotify-0.4.4-i686-4as.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/libnotify-0.4.4-i686-4as.tgz
Installing package libnotify-0.4.4-i686-4as...
PACKAGE DESCRIPTION:
libnotify: Libnotify (Notification bubbles for track changes)
libnotify:
libnotify: Notification bubbles for track changes, podcast downloading and
libnotify: other events.
libnotify:
libnotify:           http://www.galago-project.org/downloads.php
libnotify:                         WWW.SLACKY.IT
libnotify: PackaGer Gohanz
Executing install script for libnotify-0.4.4-i686-4as...


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/fftw-3.1.2-i486-2kjz.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/fftw-3.1.2-i486-2kjz.tgz
Installing package fftw-3.1.2-i486-2kjz...
PACKAGE DESCRIPTION:
fftw: FFTW - Fastest Fourier Transform in the West
fftw:
fftw: FFTW is a C subroutine library for computing the discrete Fourier
fftw: transform (DFT) in one or more dimensions, of arbitrary input size,
fftw: and of both real and complex data (as well as of even/odd data, ie.
fftw: the discrete cosine/sine transforms or DCT/DST).  We believe that
fftw: FFTW should become the FFT library of choice for most applications.
fftw: This package contains both single and double precision lib versions.
fftw: Homepage: http://www.fftw.org/
fftw:
fftw: Packaged by Ken Zalewski (kennyz@nycap.rr.com)
Executing install script for fftw-3.1.2-i486-2kjz...


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/aacplusenc-0.17.3_i386.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/aacplusenc-0.17.3_i386.tgz
Installing package aacplusenc-0.17.3_i386...
PACKAGE DESCRIPTION:


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mp3gain-1.4.6-i486-48.1.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mp3gain-1.4.6-i486-48.1.tgz
Installing package mp3gain-1.4.6-i486-48.1...
PACKAGE DESCRIPTION:
mp3gain: MP3Gain analyzes and adjusts mp3s so that they have the same volume
mp3gain:
mp3gain: MP3Gain does not just do peak normalization, as many normalizers
mp3gain: do. Instead, it does some statistical analysis to determine how
mp3gain: loud the file actually sounds to the human ear. Also, the changes
mp3gain: MP3Gain makes are completely lossless. There is no quality lost
mp3gain: in the change because the program adjusts the mp3 file directly,
mp3gain: without decoding and re-encoding.
mp3gain:


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/wavsplit-1.1.0.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/wavsplit-1.1.0.tgz
Installing package wavsplit-1.1.0...
PACKAGE DESCRIPTION:


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mp3splt-2.2.1-i486-1sl.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mp3splt-2.2.1-i486-1sl.tgz
Installing package mp3splt-2.2.1-i486-1sl...
PACKAGE DESCRIPTION:
mp3splt: Mp3Splt
mp3splt:
mp3splt: Mp3Splt is a command line utility to split mp3 (VBR supported) and
mp3splt: ogg files selecting a begin and an end time position, without
mp3splt: decoding. It's very useful to split large mp3/ogg to make smaller
mp3splt: files or to split entire albums to obtain original tracks. If you want
mp3splt: to split an album, you can select split points and filenames manually
mp3splt: or you can get them automatically from CDDB (internet or a local file)
mp3splt: or from .cue files. Supports also automatic silence split, that can be
mp3splt: used also to adjust cddb/cue splitpoints.
mp3splt:


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/cuetools-1.3.1-i486-1an.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/cuetools-1.3.1-i486-1an.tgz
Installing package cuetools-1.3.1-i486-1an...
PACKAGE DESCRIPTION:
cuetools: cuetools
cuetools: http://developer.berlios.de/projects/cuetools/
cuetools:
cuetools: cuetools is a set of utilities for working with cue files and toc
cuetools: files.
cuetools:
cuetools: The Italian Slackware Community
cuetools: http://www.slacky.eu/


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/vorbisgain-0.36-i486-48.1.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/vorbisgain-0.36-i486-48.1.tgz
Installing package vorbisgain-0.36-i486-48.1...
PACKAGE DESCRIPTION:
vorbisgain: vorbisgain (ReplayGain calculator for Ogg Vorbis files)
vorbisgain:
vorbisgain: VorbisGain is a utility that uses a psychoacoustic method to
vorbisgain: correct the volume of an Ogg Vorbis file to a predefined
vorbisgain: standardized loudness. Unlike normalization, it's a lossless
vorbisgain: procedure which works by adding tags to the file. It is based
vorbisgain: upon the ReplayGain technology.
vorbisgain:


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/musepack-decoder-7.1.95z67_i386.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/musepack-decoder-7.1.95z67_i386.tgz
Installing package musepack-decoder-7.1.95z67_i386...
PACKAGE DESCRIPTION:
Executing install script for musepack-decoder-7.1.95z67_i386...


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mppenc-1.16-i486-1as.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mppenc-1.16-i486-1as.tgz
Installing package mppenc-1.16-i486-1as...
PACKAGE DESCRIPTION:
mppenc: Mppenc (Musepack encoder)
mppenc:
mppenc: Musepack is an audio compression  format with  a strong  emphasis on
mppenc: high quality. It's not lossless, but it is designed for transparency
mppenc: so that you won't be able to hear  differences  between the original
mppenc: wave file and the much smaller MPC file.
mppenc:
mppenc:                       http://www.musepack.net
mppenc:                             WWW.SLACKY.IT
mppenc: PackaGer Gohanz


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mac-3.99_u4_b5-i486-2sy.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mac-3.99_u4_b5-i486-2sy.tgz
Installing package mac-3.99_u4_b5-i486-2sy...
PACKAGE DESCRIPTION:
mac: Monkeyâs Audio Codec
mac:
mac: Monkeyâs Audio is a fast and easy way to compress digital music.
mac: Unlike traditional methods such as mp3, ogg, or lqt that
mac: permanently discard quality to save space, Monkeyâs Audio only
mac: makes perfect, bit-for-bit copies of your music.  That means it
mac: always sounds perfect â exactly the same as the original.
mac:
mac: http://www.monkeysaudio.com/
mac:
Executing install script for mac-3.99_u4_b5-i486-2sy...


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/shorten-3.6.1-i486-2as.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/shorten-3.6.1-i486-2as.tgz
Installing package shorten-3.6.1-i486-2as...
PACKAGE DESCRIPTION:
shorten: Shorten (Is a fast, low complexity waveform coder)
shorten:
shorten: SoftSound's Shorten is an established low complexity waveform coder
shorten: It is fast and  has low memory usage and thus is suitable for stand
shorten: alone or embedded operation  for a wide range of audio-like signals
shorten:
shorten:              http://www.etree.org/shnutils/shorten
shorten:                          WWW.SLACKY.IT
shorten:
shorten: PackaGer Gohanz.


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/mp3_check-1.98-i486-48.1.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/mp3_check-1.98-i486-48.1.tgz
Installing package mp3_check-1.98-i486-48.1...
PACKAGE DESCRIPTION:
mp3_check: mp3_check - Checks MP3 files for errors
mp3_check:
mp3_check: mp3_check helps to identify in explicit detail MP3s that do not
mp3_check: correctly follow the MP3 format. It also looks for invalid frame
mp3_check: headers, missing frames, etc., and generates useful statistics. This
mp3_check: can be especially important when building an archive, and you want
mp3_check: high quality MP3s.
mp3_check:


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/faac-1.26-i486-3sl.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/faac-1.26-i486-3sl.tgz
Installing package faac-1.26-i486-3sl...
PACKAGE DESCRIPTION:
faac: Faac (NBC/MPEG-4 audio codec)
faac:
faac: FAAC is based on the ISO MPEG-4 reference code.
faac:
Executing install script for faac-1.26-i486-3sl...


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/faad2-2.6.1-i486-2sl.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/faad2-2.6.1-i486-2sl.tgz
Installing package faad2-2.6.1-i486-2sl...
PACKAGE DESCRIPTION:
faad2: Faad2 (MPEG2 and MPEG-4 AAC decoder)
faad2:
faad2: Faad2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder.
faad2: Faad2 includes code for SBR (HE AAC) decoding.
faad2:
Executing install script for faad2-2.6.1-i486-2sl...


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/lsdvd-0.16-i486-2sl.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/lsdvd-0.16-i486-2sl.tgz
Installing package lsdvd-0.16-i486-2sl...
PACKAGE DESCRIPTION:
lsdvd: LsDVD
lsdvd:
lsdvd: This is my lsdvd program, designed to print information
lsdvd: about the contents and structure of a DVD. While intended
lsdvd: primarily for use by my AcidRip program, it's handy
lsdvd: enough by itself.. if that's what you want.
lsdvd:


wget --quiet --directory-prefix=/home/leonux/script/REP_DOWNLOAD http://download.tuxfamily.org/defis/paquets_tgz/shntool-3.0.8-i486-2bj.tgz
installpkg /home/leonux/script/REP_DOWNLOAD/shntool-3.0.8-i486-2bj.tgz
Installing package shntool-3.0.8-i486-2bj...
PACKAGE DESCRIPTION:
shntool: Shntool
shntool:
shntool: shntool is a multi-purpose WAVE data processing
shntool: and reporting utility.
shntool:
Executing install script for shntool-3.0.8-i486-2bj...



============================
 !  MERCI POUR LES TESTS  !
============================

Je lance Xcfa pour voir smile

Hors ligne

 

#23 27-12-2008 15:44:05

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Tu as vu:
Une dépendance aussi pour le paquet aacplusenc qui est: fftw-3.1.2-i486-2kjz.tgz

wink

Hors ligne

 

#24 27-12-2008 15:44:07

leonux
Administrateur

Re: script Xcfa pour Slackware current

Il va de soi que pour activer l'installation des dépendances de mplayer, il ne faut pas que mplayer soit installé hein  !

Raaaahhhh ! je suis passé à côté, je l'avais installé pour mes tests ..
je recommence en virant mplayer wink

Hors ligne

 

#25 27-12-2008 15:54:44

xcfaudio
Administrateur

Re: script Xcfa pour Slackware current

Le download de deux ou trois paquets pour mplayer est long, pas d'inquiétude  wink

Hors ligne

 

Pied de page des forums

Propulsé par FluxBB
Traduction par FluxBB.fr