Welcome, Guest. Please login or register.
Did you miss your activation email?

Author Topic: [EN] Advice Please: Compile from sources or RPM via Alien  (Read 2290 times)

Offline bad_aptitude

  • User
  • Posts: 80
[EN] Advice Please: Compile from sources or RPM via Alien
« on: 2013/04/18, 22:12:17 »
There is what looks like a nice piece of image comparison software called IMGSEEK which has not been maintained recently. There may be an old package through DEB-PORTS. There are 2 - 3 year old sources files available trough GIT and there is an RPM from 2011.
Not wishing to mess up my installation, would I be better off using alienware on the RPM or compiling from an old GIT source file? Or should I just forget it?

Thanks for any advice.

Offline GoinEasy9

  • User
  • Posts: 560
RE: Advice Please: Compile from sources or RPM via Alien
« Reply #1 on: 2013/04/20, 05:04:55 »
I would choose compiling before using "alien", especially with older rpm's.  Even though the code is old, you really can't hurt anything by trying to compile it.
Linux Counter number 348347

Offline DeepDayze

  • User
  • Posts: 457
Re: RE: Advice Please: Compile from sources or RPM via Alien
« Reply #2 on: 2013/04/20, 16:24:01 »
Quote from: "GoinEasy9"
I would choose compiling before using "alien", especially with older rpm's.  Even though the code is old, you really can't hurt anything by trying to compile it.


Try to build it as user sounds like a better idea and make sure you have the needed -dev packages. Watch the errors from the "./configure && make" dance as in most cases ./configure will complain about missing headers, libs etc and the name of the missing lib will usually tell you what -dev package is needed.

For example if ./configure gives error "Error: library Foo not found" you could try installing foo-dev package. Sometimes you might not be able to compile such old software as it might depend on rather old versions of libs or headers.

Offline bad_aptitude

  • User
  • Posts: 80
Advice Please: Compile from sources or RPM via Alien
« Reply #3 on: 2013/04/20, 18:10:23 »
Thanks GoinEasy9 and DeepDayze.
I'll give compilng from sources a try.