You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
462 B
22 lines
462 B
#!/bin/bash
|
|
|
|
# Install librecell in development mode.
|
|
# The installed package will just link to this repository. Changes in the repository affect the installation immediately.
|
|
|
|
set -e
|
|
|
|
INSTALL="pip install --upgrade --editable"
|
|
|
|
# Install library code shared by multiple parts of librecell.
|
|
$INSTALL ./librecell-common
|
|
|
|
# Install lclayout
|
|
$INSTALL ./librecell-layout
|
|
|
|
# Install lclib
|
|
$INSTALL ./librecell-lib
|
|
|
|
#cd librecell-meta
|
|
#python3 setup.py install
|
|
#cd ..
|