Difference between revisions of "FreeBSD"
Jump to navigation
Jump to search
Uwe Hermann (talk | contribs) m |
Uwe Hermann (talk | contribs) m |
||
Line 1: | Line 1: | ||
This page describes how to build/install sigrok on [http://www.freebsd.org FreeBSD]. | This page describes how to build/install the sigrok subprojects on [http://www.freebsd.org FreeBSD]. | ||
The instructions were tested on FreeBSD 9.0, older versions may or may not have the required libs/versions to build sigrok. | The instructions were tested on FreeBSD 9.0, older versions may or may not have the required libs/versions to build sigrok. | ||
Line 68: | Line 68: | ||
$ '''sudo make install''' | $ '''sudo make install''' | ||
$ '''cd ..''' | $ '''cd ..''' | ||
<!-- | |||
=== sigrok-gtk === | === sigrok-gtk === | ||
Line 101: | Line 101: | ||
$ '''make''' | $ '''make''' | ||
$ '''make install''' | $ '''make install''' | ||
--> |
Revision as of 12:04, 3 May 2013
This page describes how to build/install the sigrok subprojects on FreeBSD.
The instructions were tested on FreeBSD 9.0, older versions may or may not have the required libs/versions to build sigrok.
Distribution packages
There are no FreeBSD packages/ports yet, contributors welcome!
Building
libsigrok
Installing the requirements:
$ pkg_add -r git gcc autoconf268 automake111 libtool pkg-config glib20 libzip libftdi
Building:
$ git clone git://sigrok.org/libsigrok $ cd libsigrok $ ./autogen.sh $ ./configure $ make $ make install
libsigrokdecode
Installing the requirements:
$ pkg_add -r git gcc autoconf268 automake111 libtool pkg-config glib20 python31
Building:
$ git clone git://sigrok.org/libsigrokdecode $ cd libsigrokdecode $ ./autogen.sh $ ./configure $ make $ make install
sigrok-cli
Installing the requirements:
$ pkg_add -r git gcc autoconf268 automake111 libtool pkg-config glib20
Building:
$ git clone git://sigrok.org/sigrok-cli $ cd sigrok-cli $ ./autogen.sh $ ./configure $ make $ make install
PulseView
Installing the requirements:
$ pkg_add -r git gcc libtool pkg-config cmake glib20 qt4 qt4-qmake qt4-moc qt4-rcc qt4-uic boost-libs
Building:
$ git clone git://sigrok.org/pulseview $ cd pulseview $ cmake . $ make $ sudo make install $ cd ..