Author Topic: libxml2 v2.11.5  (Read 8346 times)

Dave Yeo

  • Hero Member
  • *****
  • Posts: 4808
  • Karma: +100/-1
    • View Profile
Re: libxml2 v2.11.5
« Reply #15 on: February 05, 2024, 01:25:36 am »
Hi Andreas, I'd suggest setting up a local repository to work around the local files thing.
Install createrepo_c and createrepo_c-libs rpm's.
Create your directory, I'm using k:\rpm.local, underneath create 00  (zero zero) and under that create these,
Code: [Select]
K:\rpm.local\00>ls
i386  i686  noarch  pentium4  src

You probably don't need src.
Copy your RPM's to the correct directories.
Run "createrepo_c -d ." in the top directory, k:\rpm.local in my case.
In @unixroot\etc\yum\repos.d, create a file such as LOCAL.REPO containing something like,
Code: [Select]
[local]
name=My local repo
baseurl=file:k%3A/rpm.local
enabled=1
May have to add it to ANPM under Manage-->Repositories.
Use ANPM to install etc.
Don't forget to run the "createrepo_c -d ." whenever you add/remove any RPM's. Might also want to cleanup any repodata.old.XXXXXXXXXXXXXXX directories
Hopefully I remembered all steps.




andreas

  • Jr. Member
  • **
  • Posts: 68
  • Karma: +4/-0
    • View Profile
Re: libxml2 v2.11.5
« Reply #16 on: February 06, 2024, 06:22:56 pm »
thanks. will try that as soon as i find some time..