You are not logged in.

#1 2011-02-10 07:44:06

trusktr
Banned
From: .earth
Registered: 2010-02-18
Posts: 907
Website

[SOLVED] Do the lib32 packages in AUR follow [multilib] standards?

Some packages, like google-talkplugin, depend on many lib32 packages.

I noticed that lib32-openssl-compatibility is installed from the AUR.

I noticed a comment that says "Hi. This package is not following the new multilib standard for Arch. I would suggest the following PKGBUILD: http://aur.pastebin.com/9gEt73W6. It really builds a openssl package for version 0.9.8 and puts only the important files on /usr/lib32, so they will be used when necessary."

Should i worry about whether multilib standards are being followed?

EDIT:
I noticed in the pkgbuild for lib32-openssl-compatibility that the source is acquired from http://konnichi.com.
Is this safe? Why isn't it acquired from openssl.org or similar???

Last edited by trusktr (2013-08-31 06:16:03)


joe@trusktr.io - joe at true skater dot io.

Offline

#2 2011-02-10 07:50:47

ngoonee
Forum Fellow
From: Between Thailand and Singapore
Registered: 2009-03-17
Posts: 7,356

Re: [SOLVED] Do the lib32 packages in AUR follow [multilib] standards?

Yes you should. Just check the PKGBUILD and see where its installing into.


Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.

Offline

#3 2011-02-10 07:58:26

trusktr
Banned
From: .earth
Registered: 2010-02-18
Posts: 907
Website

Re: [SOLVED] Do the lib32 packages in AUR follow [multilib] standards?

Thanks ngoonee. I'm not all to experienced in this area though. Can you guide me through it?

This is the pkgbuild for lib32-openssl-compatibility:

_pkgsourcename=openssl-compatibility
pkgname=lib32-$_pkgsourcename
pkgver=0.9.8
pkgrel=4
pkgdesc="libssl and libcrypto 0.9.8 libs (32 Bit)"
url="https://www.openssl.org"
license=('GPL')
arch=(x86_64)
depends=()
source=(http://arm.konnichi.com/core/os/i686/openssl-0.9.8n-1-i686.pkg.tar.xz)
md5sums=('b1860e7fd78210542fbb4913aa7e8eb1')

build() {
  mkdir -p $pkgdir/usr/lib32
  install -D -m555 $srcdir/usr/lib/libcrypto.so.0.9.8 $pkgdir/usr/lib32 || return 1
  install -D -m555 $srcdir/usr/lib/libssl.so.0.9.8 $pkgdir/usr/lib32 || return 1
}

What am I looking for in there, and if something's wrong, what should it be?

Last edited by trusktr (2011-02-10 07:58:56)


joe@trusktr.io - joe at true skater dot io.

Offline

#4 2011-02-10 08:42:01

ngoonee
Forum Fellow
From: Between Thailand and Singapore
Registered: 2009-03-17
Posts: 7,356

Re: [SOLVED] Do the lib32 packages in AUR follow [multilib] standards?

Just check any of the [multilib] packages to see where they put their libs.


Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.

Offline

#5 2011-02-10 09:26:33

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: [SOLVED] Do the lib32 packages in AUR follow [multilib] standards?

A more general answer: AUR packages should comply with Arch packaging standards. However, as anyone can submit anything to the AUR, you should check the PKGBUILD and any other associated files first, before you install anything.

Offline

Board footer

Powered by FluxBB