mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-02 13:04:42 +01:00
development/kicad-doc: Added (documentation for KiCad EDA Suite)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
715be7de44
commit
67d3bbbcca
4 changed files with 99 additions and 0 deletions
9
development/kicad-doc/README
Normal file
9
development/kicad-doc/README
Normal file
|
@ -0,0 +1,9 @@
|
|||
Additional KiCad documentation and presentations.
|
||||
|
||||
Since this documentation package has a separate release time-line,
|
||||
you may have to specify the version of the installed KiCad package if
|
||||
it is newer than this documentation package. At the time of writing,
|
||||
it was "bzr_20100608". To specify another release, run this SlackBuild
|
||||
as follows:
|
||||
|
||||
# KICAD_VERSION="bzr_yyyymmdd" ./kicad-doc.SlackBuild
|
61
development/kicad-doc/kicad-doc.SlackBuild
Normal file
61
development/kicad-doc/kicad-doc.SlackBuild
Normal file
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for kicad-doc
|
||||
# Additional documentation for KiCad
|
||||
|
||||
# Written by Niels Horn <niels.horn@gmail.com>
|
||||
# Revision date: 2010/09/25
|
||||
|
||||
PRGNAM=kicad-doc
|
||||
VERSION=${VERSION:-bzr_20100918}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
ARCH="noarch"
|
||||
|
||||
KICAD_VERSION=${KICAD_VERSION:-bzr_20100608}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DKICAD_DOCS=/usr/doc/kicad-$KICAD_VERSION \
|
||||
-DCMAKE_BUILD_TYPE=Release ..
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
cd ..
|
||||
|
||||
# Create a link in the data-dir to the documentation
|
||||
mkdir -p $PKG/usr/share/kicad
|
||||
cd $PKG/usr/share/kicad
|
||||
ln -sf ../../doc/kicad-$KICAD_VERSION/help
|
||||
cd ..
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
development/kicad-doc/kicad-doc.info
Normal file
10
development/kicad-doc/kicad-doc.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="kicad-doc"
|
||||
VERSION="bzr_20100918"
|
||||
HOMEPAGE="http://kicad.sourceforge.net/wiki"
|
||||
DOWNLOAD="http://www.nielshorn.net/_download/slackware/source/kicad-doc-bzr_20100918.tar.bz2"
|
||||
MD5SUM="245cd7a613289671e1c9e1c7c9f84dbc"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Niels Horn"
|
||||
EMAIL="niels.horn@gmail.com"
|
||||
APPROVED="dsomero"
|
19
development/kicad-doc/slack-desc
Normal file
19
development/kicad-doc/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
kicad-doc: kicad-doc (documentation for KiCad EDA Suite)
|
||||
kicad-doc:
|
||||
kicad-doc: KiCad additional documentation, help-files and presentations.
|
||||
kicad-doc:
|
||||
kicad-doc: Homepage: http://kicad.sourceforge.net/wiki
|
||||
kicad-doc:
|
||||
kicad-doc:
|
||||
kicad-doc:
|
||||
kicad-doc:
|
||||
kicad-doc:
|
||||
kicad-doc:
|
Loading…
Reference in a new issue