0ab4b12250
Fritzing is essentially Electronic Design Automation software suited to the needs of designers and artists. It uses the metaphor of the breadboard, so that it is easy to transfer a hardware sketch to the software by using a drag-and-drop-based GUI to copy your sketch. From there it is possible to create PCB layouts for turning your prototype into a robust PCB, either on your own, or with the help of a manufacturer. ok ajacoutot@
8 lines
282 B
Bash
8 lines
282 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: fritzing.sh,v 1.1.1.1 2010/09/15 07:14:18 jasper Exp $
|
|
# Since Fritzing wants it's file stored in CWD or specified via --folder
|
|
# we use the last. Lest to prevent ever changing patches.
|
|
|
|
${TRUEPREFIX}/bin/Fritzing --folder ${TRUEPREFIX}/share/fritzing/ "$@"
|