Difference between revisions of "OpenBSD"
Jump to navigation
Jump to search
Uwe Hermann (talk | contribs) m |
Uwe Hermann (talk | contribs) m |
||
Line 11: | Line 11: | ||
=== libsigrok === | === libsigrok === | ||
'''Installing the [[Building#Build_requirements|requirements]]:''' | |||
'''Installing the requirements:''' | |||
$ '''pkg_add -r git autoconf automake libtool glib2 libzip libftdi''' | $ '''pkg_add -r git autoconf automake libtool glib2 libzip libftdi''' | ||
Line 39: | Line 26: | ||
=== libsigrokdecode === | === libsigrokdecode === | ||
'''Installing the [[Building#Build_requirements|requirements]]:''' | |||
'''Installing the requirements:''' | |||
$ '''pkg_add -r git autoconf automake libtool glib2 python''' | $ '''pkg_add -r git autoconf automake libtool glib2 python''' | ||
Line 65: | Line 41: | ||
=== sigrok-cli === | === sigrok-cli === | ||
'''Installing the [[Building#Build_requirements|requirements]]:''' | |||
'''Installing the requirements:''' | |||
$ '''pkg_add -r git autoconf automake libtool glib2''' | $ '''pkg_add -r git autoconf automake libtool glib2''' | ||
Line 94: | Line 58: | ||
'''Note:''' PulseView does not build on OpenBSD at the moment, this is being investigated. | '''Note:''' PulseView does not build on OpenBSD at the moment, this is being investigated. | ||
'''Installing the [[Building#Build_requirements|requirements]]:''' | |||
'''Installing the requirements:''' | |||
$ '''pkg_add -r git libtool cmake glib2 qt4 boost-1.42.0p14''' | $ '''pkg_add -r git libtool cmake glib2 qt4 boost-1.42.0p14''' | ||
Line 124: | Line 73: | ||
=== sigrok-gtk === | === sigrok-gtk === | ||
'''Note:''' | '''Note:''' [[sigrok-gtk]] is not yet usable! | ||
'''Installing the requirements:''' | '''Installing the [[Building#Build_requirements|requirements]]:''' | ||
$ '''pkg_add -r git autoconf automake libtool glib2 gtk+2''' | $ '''pkg_add -r git autoconf automake libtool glib2 gtk+2''' | ||
Line 153: | Line 90: | ||
=== sigrok-qt === | === sigrok-qt === | ||
'''Note:''' | '''Note:''' [[sigrok-qt]] is not yet usable! | ||
'''Installing the requirements:''' | '''Installing the [[Building#Build_requirements|requirements]]:''' | ||
$ '''pkg_add -r git libtool glib2 qt4''' | $ '''pkg_add -r git libtool glib2 qt4''' |
Revision as of 19:12, 2 February 2013
This page describes how to build/install sigrok on OpenBSD.
The instructions were tested on OpenBSD 5.2, older versions may or may not have the required libs/versions to build sigrok.
Distribution packages
There are no OpenBSD packages/ports yet, contributors welcome!
Building
libsigrok
Installing the requirements:
$ pkg_add -r git autoconf automake libtool glib2 libzip libftdi
Building:
$ git clone git://sigrok.org/libsigrok $ cd libsigrok $ AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.12 ./autogen.sh $ ./configure $ make $ make install
libsigrokdecode
Installing the requirements:
$ pkg_add -r git autoconf automake libtool glib2 python
Building:
$ git clone git://sigrok.org/libsigrokdecode $ cd libsigrokdecode $ AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.12 ./autogen.sh $ ./configure $ make $ make install
sigrok-cli
Installing the requirements:
$ pkg_add -r git autoconf automake libtool glib2
Building:
$ git clone git://sigrok.org/sigrok-cli $ cd sigrok-cli $ AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.12 ./autogen.sh $ ./configure $ make $ make install
PulseView
Note: PulseView does not build on OpenBSD at the moment, this is being investigated.
Installing the requirements:
$ pkg_add -r git libtool cmake glib2 qt4 boost-1.42.0p14
Building:
$ git clone git://sigrok.org/pulseview $ cd pulseview $ cmake . $ make $ sudo make install $ cd ..
sigrok-gtk
Note: sigrok-gtk is not yet usable!
Installing the requirements:
$ pkg_add -r git autoconf automake libtool glib2 gtk+2
Building:
$ git clone git://sigrok.org/sigrok-gtk $ cd sigrok-gtk $ AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.12 ./autogen.sh $ ./configure $ make $ make install
sigrok-qt
Note: sigrok-qt is not yet usable!
Installing the requirements:
$ pkg_add -r git libtool glib2 qt4
Building:
$ git clone git://sigrok.org/sigrok-qt $ cd sigrok-qt $ qmake4 $ make $ make install