You are not logged in.
Pages: 1
The AUR package has lib32-glibc listed as a dependency, but since I'm on arch32 can I just change it to glibc in the PKGBUILD? Or would that not work? I've never edited any PKGBUILD's so I'm lost.
Thanks!
Offline
Yes. You change 'lib32-glibc' to 'glibc' in the dependencies and add 'i686' to the 'arch' field.
Offline
Ok cool, thank you so much!
Offline
On second view into the package itself:
arch=('i686' 'x86_64')
depends_x86_64=('lib32-glibc')
So the depends on lib32-glibc is only there for 64-bit and will be ignored if built on 32-bit.
So actually, you don't have to edit anything. :-)
Offline
Pages: 1