Subversion Repositories ALCASAR

Rev

Rev 3079 | Rev 3103 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log

Rev 3079 Rev 3088
Line 17... Line 17...
17
- create directories structure in your home : mkdir -p ~/rpmbuild/{SRPMS,SOURCES,SPECS,tmp}
17
- create directories structure in your home : mkdir -p ~/rpmbuild/{SRPMS,SOURCES,SPECS,tmp}
18
- Option : find the ".rpmmacros" file on mageia wiki (https://wiki.mageia.org/en/Packagers_RPM_tutorial) and copy it in your home directory
18
- Option : find the ".rpmmacros" file on mageia wiki (https://wiki.mageia.org/en/Packagers_RPM_tutorial) and copy it in your home directory
19
 
19
 
20
****  For Coova-chilli   *****
20
****  For Coova-chilli   *****
21
- install the following RPMs "lib64openssl-devel", "lib64json-c-devel"
21
- install the following RPMs "lib64openssl-devel", "lib64json-c-devel"
22
- retrieve the last tarball of coova-chilli (or the svn archive).
22
- retrieve the last git archive of coova-chilli (https://github.com/coova/coova-chilli).
23
- Untar it and test the compilation process ("sh ./bootstrap", "./configure --disable-static --enable-shared --enable-largelimits --enable-chilliredir --enable-chilliscript --with-poll --enable-dhcpopt --enable-libjson --enable-json 	--enable-mdns --with-openssl", "make", "make install").
23
- Unzip it and test the compilation process ("sh ./bootstrap", "./configure --disable-static --enable-shared --enable-largelimits --enable-chilliredir --enable-chilliscript --with-poll --enable-dhcpopt --enable-libjson --enable-json 	--enable-mdns --with-openssl", "make", "make install").
24
- all is in the /usr/local". Remove the instaled files ("make uninstall") and the binaries ("make clean").
24
- all is in the /usr/local". Remove the instaled files ("make uninstall") and the binaries ("make clean").
25
- rename the directory and compress it (ie : tar -cvzf coova-chilli-1.x.tgz coova-chilli-1.x). Copy this tarball in the directory ~/rpmbuild/SOURCES/.
25
- rename the directory (coovachilli-1.x) and compress it (ie : tar -cvzf coova-chilli-1.x.tar.gz coova-chilli-1.x). Copy this tarball in the directory ~/rpmbuild/SOURCES/.
26
- copy the SPEC file from the ALCASAR archive to the directory ~/rpmbuild/SPEC
26
- copy the SPEC file from the ALCASAR archive to the directory ~/rpmbuild/SPEC
-
 
27
- copy the .patch and SHA256* files in the directory ~/rpmbuild/SOURCES
27
- Add the option -Wno-format-truncation à la ligne "%Werror_cflags" du fichier /etc/rpm/macro.d/20build.macros (avoid the following warning : https://github.com/coova/coova-chilli/issues/509) 
28
//- Add the option -Wno-format-truncation à la ligne "%Werror_cflags" du fichier /etc/rpm/macro.d/20build.macros (avoid the following warning : https://github.com/coova/coova-chilli/issues/509) 
28
- change to the directory ~/pmbuild/SPEC and run the RPM build process : "rpmbuild -bb coova-chilli.spec" (or rpmbuild -ba to create also the SRPMS) 
29
- change to the directory ~/pmbuild/SPEC and run the RPM build process : "rpmbuild -bb coova-chilli.spec" (or rpmbuild -ba to create also the SRPMS) 
29
 
30
 
30
INFO : .spec tunning :
31
INFO : .spec tunning :
31
	- add this 1st line : "%define _disable_ld_no_undefined 1" to avoid errors for unused references (ld)
32
	- add this 1st line : "%define _disable_ld_no_undefined 1" to avoid errors for unused references (ld)
32
	- add the line "automake --add-missing" before "make"
33
	- add the line "automake --add-missing" before "make"
33
	- for 64b version, add 2 lines with "lib64" directory on the section removing statics binaries (rm -rf $RPM_BUILD_ROOT/usr/lib/*.la)
34
	- for 64b version, add 2 lines with "lib64" directory in the section "removing statics binaries" (rm -rf $RPM_BUILD_ROOT/usr/lib/*.la)
34
	- remove from the archive the unused files for ALCASAR (wpad.dat, wwwdir, etc. via la directive '%exclude')
35
	- remove from the archive the unused files for ALCASAR (wpad.dat, wwwdir, etc.) via la directive '%exclude'
35
	- change %make (deprecated) with %make_build and change %makeinstall (deprecated) with %make_install
36
	- change %make (deprecated) with %make_build and change %makeinstall (deprecated) with %make_install
36
 
37
 
37
**** For HAVP ****
38
**** For HAVP ****
38
- install the RPM of clamav-devel
39
- install the RPM of clamav-devel
39
- download, uncompress, and test the compilation of the last version of havp (./configure + make)
40
- download, uncompress, and test the compilation of the last version of havp (./configure + make)