]> git.draconx.ca Git - geda-symbols.git/blob - gaf-setup.scm
Add some more 74-series multifunction logic symbols.
[geda-symbols.git] / gaf-setup.scm
1 ; Copyright © 2017 Nick Bowler
2 ;
3 ; License WTFPL2: Do What The Fuck You Want To Public License, version 2.
4 ; This is free software: you are free to do what the fuck you want to.
5 ; There is NO WARRANTY, to the extent permitted by law.
6
7 ; Script to register component library with geda/gaf.  Add to gafrc
8 ; something like:
9 ;
10 ;   (define mydir "/path/to/this/repo")
11 ;   (load (build-path mydir "gaf-setup.scm"))
12 ;   (setup-library mydir)
13
14 (define (setup-library owndir)
15   (begin
16     (component-library
17       (build-path owndir "74LVC1G57") "74LVC1G57 logic symbols")
18     (component-library
19       (build-path owndir "74LVC1G97") "74LVC1G97 logic symbols")
20     (component-library
21       (build-path owndir "multi") "Combination parts")
22     (component-library
23       (build-path owndir "logic") "Digital logic symbols")
24     (component-library
25       (build-path owndir "generic") "Generic symbols")
26     ))