Difference between revisions of "NetBSD"
Jump to navigation
Jump to search
Uwe Hermann (talk | contribs) (NetBSD) |
Uwe Hermann (talk | contribs) m |
||
Line 11: | Line 11: | ||
=== libsigrok === | === libsigrok === | ||
'''Installing the [[Building#Build_requirements|requirements]]:''' | |||
'''Installing the requirements:''' | |||
$ '''pkg_add scmgit autoconf automake libtool pkg-config glib2 libzip libftdi libusb1''' | $ '''pkg_add scmgit autoconf automake libtool pkg-config glib2 libzip libftdi libusb1''' | ||
Line 39: | Line 26: | ||
=== libsigrokdecode === | === libsigrokdecode === | ||
'''Installing the [[Building#Build_requirements|requirements]]:''' | |||
'''Installing the requirements:''' | |||
$ '''pkg_add scmgit autoconf automake libtool pkg-config glib2 python32''' | $ '''pkg_add scmgit autoconf automake libtool pkg-config glib2 python32''' | ||
Line 65: | Line 41: | ||
=== sigrok-cli === | === sigrok-cli === | ||
'''Installing the [[Building#Build_requirements|requirements]]:''' | |||
'''Installing the requirements:''' | |||
$ '''pkg_add scmgit autoconf automake libtool pkg-config glib2''' | $ '''pkg_add scmgit autoconf automake libtool pkg-config glib2''' |
Revision as of 19:15, 2 February 2013
This page describes how to build/install sigrok on NetBSD.
The instructions were tested on NetBSD 6.0.1, older versions may or may not have the required libs/versions to build sigrok.
Distribution packages
There are no NetBSD packages/ports yet, contributors welcome!
Building
libsigrok
Installing the requirements:
$ pkg_add scmgit autoconf automake libtool pkg-config glib2 libzip libftdi libusb1
Building:
$ git clone git://sigrok.org/libsigrok $ cd libsigrok $ ./autogen.sh $ ./configure $ make $ make install
libsigrokdecode
Installing the requirements:
$ pkg_add scmgit autoconf automake libtool pkg-config glib2 python32
Building:
$ git clone git://sigrok.org/libsigrokdecode $ cd libsigrokdecode $ ./autogen.sh $ ./configure $ make $ make install
sigrok-cli
Installing the requirements:
$ pkg_add scmgit autoconf automake libtool pkg-config glib2
Building:
$ git clone git://sigrok.org/sigrok-cli $ cd sigrok-cli $ ./autogen.sh $ ./configure $ make $ make install