Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
02-24-2013, 11:01 PM
|
#1
|
|
Member
Registered: Apr 2012
Location: Carlisle, Iowa, USA
Distribution: This changes often, but currently Bodhi 2.2
Posts: 79
Rep: 
|
Installing software from github
So today fprint support for my model of fingerprint scanner was added to the fprint repo on github, meaning I will finally be able to use my scanner! There is just one minor problem: I do not have the slightest clue how to install software from github!
Does anyone know how to accomplish this, or even a link where I can find detailed instructions?
Here is a link to the repo: https://github.com/maffmeier/fprint_vfs5011
|
|
|
|
02-25-2013, 02:51 AM
|
#2
|
|
Guru
Registered: Aug 2005
Posts: 9,693
|
there are a few ways
on this particular link
There is a button to click on called " zip"
that will give you a zipped up archive
then build the source
or
the terminal
Code:
git clone git://github.com/maffmeier/fprint_vfs5011.git
|
|
|
|
02-25-2013, 04:33 AM
|
#3
|
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen, DK
Distribution: pclos2012.8, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 11,762
|
The "zip" works https://nodeload.github.com/maffmeie...011/zip/master
Please unzip, and : $ cd fprint_vfs5011-master/ && ./configure
$ make && sudo make install
There is at least one bug : Asks for crypto.pc .
Default is /usr/lib/pkgconfig/libcrypto.pc .
Which version of Ubuntu are you using ?
-
|
|
|
|
02-25-2013, 07:13 AM
|
#4
|
|
Member
Registered: Apr 2012
Location: Carlisle, Iowa, USA
Distribution: This changes often, but currently Bodhi 2.2
Posts: 79
Original Poster
Rep: 
|
Quote:
Originally Posted by knudfl
The "zip" works https://nodeload.github.com/maffmeie...011/zip/master
Please unzip, and : $ cd fprint_vfs5011-master/ && ./configure
$ make && sudo make install
There is at least one bug : Asks for crypto.pc .
Default is /usr/lib/pkgconfig/libcrypto.pc .
Which version of Ubuntu are you using ?
-
|
I am on 12.04.2
I assume these commands will actually build the package & install it for me? If not, please give further details as I have never built from source before.
|
|
|
|
02-25-2013, 07:18 AM
|
#5
|
|
Member
Registered: Apr 2012
Location: Carlisle, Iowa, USA
Distribution: This changes often, but currently Bodhi 2.2
Posts: 79
Original Poster
Rep: 
|
Quote:
Originally Posted by knudfl
The "zip" works https://nodeload.github.com/maffmeie...011/zip/master
Please unzip, and : $ cd fprint_vfs5011-master/ && ./configure
$ make && sudo make install
There is at least one bug : Asks for crypto.pc .
Default is /usr/lib/pkgconfig/libcrypto.pc .
Which version of Ubuntu are you using ?
-
|
After running these commands, I got this readout:
Code:
checking for LIBUSB... no
configure: error: Package requirements (libusb-1.0 >= 0.9.1) were not met:
No package 'libusb-1.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables LIBUSB_CFLAGS
and LIBUSB_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
But according to synaptic, the package libusb-1.0.0 IS installed. I tried reinstalling, but no luck there.
Last edited by linuxPCplus; 02-25-2013 at 07:20 AM.
|
|
|
|
02-25-2013, 08:37 AM
|
#6
|
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen, DK
Distribution: pclos2012.8, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 11,762
|
Quote:
|
No package 'libusb-1.0' found
|
That's also about a <package-config-file> : libusb-1.0.pc .
( /usr/lib/<arch>-linux-gnu/pkgconfig/libusb-1.0.pc ).
Prerequisites for fprint : $ sudo apt-get update
$ sudo apt-get install install libusb-1.0.0-dev libnss3-dev libglib2.0-dev
( 'fprint' / Ubuntu 12.04 refuses to recognize libssl-dev : "crypto.pc / libcrypto.pc",
we can use the alternative libnss* instead.)
-
Last edited by knudfl; 02-25-2013 at 08:51 AM.
|
|
|
|
02-25-2013, 08:48 AM
|
#7
|
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen, DK
Distribution: pclos2012.8, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 11,762
|
... By the way : Did you try installing fprint from "Ubuntu Software Center" ?
Or : sudo apt-get install fprint-demo
( libfprint0 gets installed too, as a dependency.)
-
|
|
|
|
02-25-2013, 08:51 AM
|
#8
|
|
Member
Registered: Apr 2012
Location: Carlisle, Iowa, USA
Distribution: This changes often, but currently Bodhi 2.2
Posts: 79
Original Poster
Rep: 
|
Quote:
Originally Posted by knudfl
... By the way : Did you try installing fprint from "Ubuntu Software Center" ?
Or : sudo apt-get install fprint-demo
( libfprint0 gets installed too, as a dependency.)
-
|
Well, I had installed it through synaptic, but the problem is that support for my device was just added yesterday & the version currently available in the Ubuntu repos is too old to have this support.
|
|
|
|
02-25-2013, 09:15 AM
|
#9
|
|
Member
Registered: Apr 2012
Location: Carlisle, Iowa, USA
Distribution: This changes often, but currently Bodhi 2.2
Posts: 79
Original Poster
Rep: 
|
Quote:
Originally Posted by knudfl
That's also about a <package-config-file> : libusb-1.0.pc .
( /usr/lib/<arch>-linux-gnu/pkgconfig/libusb-1.0.pc ).
Prerequisites for fprint : $ sudo apt-get update
$ sudo apt-get install install libusb-1.0.0-dev libnss3-dev libglib2.0-dev
( 'fprint' / Ubuntu 12.04 refuses to recognize libssl-dev : "crypto.pc / libcrypto.pc",
we can use the alternative libnss* instead.)
-
|
Ok, so I got past the earlier errors, but now get this error when i try to run the configure command:
configure: error: gdk-pixbuf or ImageMagick is required for imaging support
but image-magick is installed.
|
|
|
|
02-25-2013, 09:58 AM
|
#10
|
|
Moderator
Registered: Dec 2009
Location: Hanover, Germany
Distribution: Slackware, Debian
Posts: 12,524
|
You need to install the development packages if you want to compile software, on Debian based systems these usually end with -dev, like libusb-1.0.0-dev in the example above. Check if you have those installed.
|
|
|
|
02-25-2013, 10:29 AM
|
#11
|
|
Member
Registered: Apr 2012
Location: Carlisle, Iowa, USA
Distribution: This changes often, but currently Bodhi 2.2
Posts: 79
Original Poster
Rep: 
|
Quote:
Originally Posted by TobiSGD
You need to install the development packages if you want to compile software, on Debian based systems these usually end with -dev, like libusb-1.0.0-dev in the example above. Check if you have those installed.
|
Yes, all of the packages you mentioned, including dev files are installed. But the imagemagick error persists.
|
|
|
|
02-25-2013, 11:31 AM
|
#12
|
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen, DK
Distribution: pclos2012.8, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 11,762
|
Development package names :
libgdk-pixbuf2.0-dev , libmagickcore-dev , libmagickwand-dev
|
|
|
|
02-25-2013, 12:17 PM
|
#13
|
|
Member
Registered: Apr 2012
Location: Carlisle, Iowa, USA
Distribution: This changes often, but currently Bodhi 2.2
Posts: 79
Original Poster
Rep: 
|
Quote:
Originally Posted by knudfl
Development package names :
libgdk-pixbuf2.0-dev , libmagickcore-dev , libmagickwand-dev
|
Actually, I already got it. Had to reinstall libfprint0
Thanks for all the help!
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 03:51 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|