Line 12... |
Line 12... |
12 |
- create directories structure in your home : mkdir -p ~/rpmbuild/{SRPMS,SOURCES,SPECS,tmp}
|
12 |
- create directories structure in your home : mkdir -p ~/rpmbuild/{SRPMS,SOURCES,SPECS,tmp}
|
13 |
- Option : find the ".rpmmacros" file on mageia wiki (https://wiki.mageia.org/en/Packagers_RPM_tutorial) and copy it in your home directory
|
13 |
- Option : find the ".rpmmacros" file on mageia wiki (https://wiki.mageia.org/en/Packagers_RPM_tutorial) and copy it in your home directory
|
14 |
|
14 |
|
15 |
**** Coova-chilli *****
|
15 |
**** Coova-chilli *****
|
16 |
- retrieve the last tarball of coova-chilli (or the svn archive).
|
16 |
- retrieve the last tarball of coova-chilli (or the svn archive).
|
17 |
- Untar it and test the compilation process ("sh ./bootstrap", "./configure --enable-json --enable-libjson", "make", "make install").
|
17 |
- Untar it and test the compilation process ("sh ./bootstrap", "./configure --enable-json --enable-libjson --enable-mdns", "make", "make install").
|
18 |
- all is in the /usr/local". Remove the instaled files ("make uninstall") and the binaries ("make clean").
|
18 |
- all is in the /usr/local". Remove the instaled files ("make uninstall") and the binaries ("make clean").
|
19 |
- rename the directory and compress it (ie : tar -cvzf coova-chilli-1.3.2.tar.gz coova-chilli-1.3.2). Copy this tarball in the directory ~/rpmbuild/SOURCES/.
|
19 |
- rename the directory and compress it (ie : tar -cvzf coova-chilli-1.4.tar.gz coova-chilli-1.4). Copy this tarball in the directory ~/rpmbuild/SOURCES/.
|
20 |
- copy the SPEC file from the ALCASAR archive to the directory ~/rpmbuild/SPEC
|
20 |
- copy the SPEC file from the ALCASAR archive to the directory ~/rpmbuild/SPEC
|
21 |
- change to the directory ~/pmbuild/SPEC and run the RPM build process excluding 'ssl' : "rpmbuild -bb coova-chilli.spec --without ssl" (or rpmbuild -ba to create also the SRPMS)
|
21 |
- change to the directory ~/pmbuild/SPEC and run the RPM build process excluding 'ssl' : "rpmbuild -bb coova-chilli.spec" (or rpmbuild -ba to create also the SRPMS)
|
22 |
|
22 |
|
23 |
INFO : .spec modifications since Redhat RPM :
|
23 |
INFO : .spec modifications since Redhat RPM :
|
24 |
- ajouter en première ligne "%define _disable_ld_no_undefined 1" pour éviter les erreurs liées au variables inutisées
|
24 |
- ajouter en première ligne "%define _disable_ld_no_undefined 1" pour éviter les erreurs liées au variables inutisées
|
25 |
- pour la version 64b, ajouter 2 lignes intégrant le répertoire "lib64" lors de la suppression des binaires statiques (rm -rf $RPM_BUILD_ROOT/usr/lib/*.la)
|
25 |
- pour la version 64b, ajouter 2 lignes intégrant le répertoire "lib64" lors de la suppression des binaires statiques (rm -rf $RPM_BUILD_ROOT/usr/lib/*.la)
|
26 |
- exclure de l'archive les fichiers inutiles pour ALCASAR (wpad.dat, wwwdir, etc. via la directive '%exclude')
|
26 |
- exclure de l'archive les fichiers inutiles pour ALCASAR (wpad.dat, wwwdir, etc. via la directive '%exclude')
|