mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
academic/ngspice: KiCAD build fixes.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
9cdf6e7378
commit
3dc7729771
1 changed files with 9 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
PRGNAM=ngspice
|
||||
VERSION=${VERSION:-34}
|
||||
BUILD=${BUILD:-4}
|
||||
BUILD=${BUILD:-5}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -93,6 +93,8 @@ CFLAGS="$SLKCFLAGS" \
|
|||
make
|
||||
make DESTDIR=$PKG install
|
||||
|
||||
# This has installed the configure output file as /usr/include/config.h.
|
||||
|
||||
cd ..
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
|
@ -112,12 +114,18 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|||
cat $CWD/$PRGNAM-$VERSION-manual.pdf \
|
||||
> $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM-$VERSION-manual.pdf
|
||||
|
||||
# The shared library enabled by "--with-ngshared"
|
||||
install -Dm755 ./release/src/.libs/libngspice.so.0.0.0 \
|
||||
"$PKG/usr/lib${LIBDIRSUFFIX}/libngspice.so.0.0.0"
|
||||
|
||||
ln -s "libngspice.so.0.0.0" "$PKG/usr/lib${LIBDIRSUFFIX}/libngspice.so.0"
|
||||
ln -s "libngspice.so.0.0.0" "$PKG/usr/lib${LIBDIRSUFFIX}/libngspice.so"
|
||||
|
||||
# The include file needed to use the shared library enabled by "--with-ngshared"
|
||||
install -Dm644 ./src/include/ngspice/sharedspice.h $PKG/usr/include/ngspice/sharedspice.h
|
||||
# Move the configure output file.
|
||||
mv $PKG/usr/include/config.h $PKG/usr/include/ngspice/
|
||||
|
||||
install -Dm644 $CWD/$PRGNAM.png $PKG/usr/share/icons/hicolor/48x48/apps/$PRGNAM.png
|
||||
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
|
|
Loading…
Reference in a new issue