Difference between revisions of "OpenBSD"

From sigrok
Jump to navigation Jump to search
(Bring back explicit per-project build dependencies.)
Line 30: Line 30:
'''Installing the [[Building#Build_requirements|requirements]]:'''
'''Installing the [[Building#Build_requirements|requirements]]:'''


  $ '''pkg_add -i python'''
  $ '''pkg_add -i git autoconf automake libtool glib2 python'''
  Select python version 3.x when asked
  Select Python version 3.x when asked.


'''Building:'''
'''Building:'''
Line 44: Line 44:


=== sigrok-cli ===
=== sigrok-cli ===
'''Installing the [[Building#Build_requirements|requirements]]:'''
$ '''pkg_add -r git autoconf automake libtool glib2'''


'''Building:'''
'''Building:'''
Line 61: Line 65:
'''Installing the [[Building#Build_requirements|requirements]]:'''
'''Installing the [[Building#Build_requirements|requirements]]:'''


  $ '''pkg_add -i cmake qt4 boost-1.42.0p14'''
  $ '''pkg_add -i git libtool cmake glib2 qt4 boost-1.42.0p14'''


'''Building:'''
'''Building:'''
Line 78: Line 82:
'''Installing the [[Building#Build_requirements|requirements]]:'''
'''Installing the [[Building#Build_requirements|requirements]]:'''


  $ '''pkg_add -i gtk+2'''
  $ '''pkg_add -i git autoconf automake libtool glib2 gtk+2'''


'''Building:'''
'''Building:'''
Line 96: Line 100:
'''Installing the [[Building#Build_requirements|requirements]]:'''
'''Installing the [[Building#Build_requirements|requirements]]:'''


  $ '''pkg_add -i qt4'''
  $ '''pkg_add -i git libtool glib2 qt4'''


'''Building:'''
'''Building:'''

Revision as of 09:48, 27 April 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 -i git autoconf automake libtool glib2 libzip libftdi
Select autoconf and automake versions with the major versions as listed below (2.69 and 1.12) when asked.

Building:

$ git clone git://sigrok.org/libsigrok
$ cd libsigrok
$ export AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.12
$ ./autogen.sh
$ ./configure
$ make
$ make install

libsigrokdecode

Installing the requirements:

$ pkg_add -i git autoconf automake libtool glib2 python
Select Python version 3.x when asked.

Building:

$ git clone git://sigrok.org/libsigrokdecode
$ cd libsigrokdecode
$ export AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.12 (if you haven't exported those vars already)
$ ./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
$ export AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.12 (if you haven't exported them already)
$ ./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 -i 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 -i git autoconf automake libtool glib2 gtk+2

Building:

$ git clone git://sigrok.org/sigrok-gtk
$ cd sigrok-gtk
$ export AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.12 (if you haven't exported them already)
$ ./autogen.sh
$ ./configure
$ make
$ make install

sigrok-qt

Note: sigrok-qt is not yet usable!

Installing the requirements:

$ pkg_add -i git libtool glib2 qt4

Building:

$ git clone git://sigrok.org/sigrok-qt
$ cd sigrok-qt
$ qmake4
$ make
$ make install