mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
development/codeblocks: Added to 12.1 repository
This commit is contained in:
parent
a1579f660e
commit
c4bb54ca8e
4 changed files with 100 additions and 0 deletions
7
development/codeblocks/README
Normal file
7
development/codeblocks/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
Code::Blocks is a free C++ IDE built to meet the most demanding needs of its
|
||||
users. It is designed to be very extensible and fully configurable.
|
||||
|
||||
Built around a plugin framework, Code::Blocks can be extended with plugins.
|
||||
Any kind of functionality can be added by installing/coding a plugin.
|
||||
|
||||
Requires libmspack, wxGTK or wxPython, available at SlackBuilds.org
|
66
development/codeblocks/codeblocks.SlackBuild
Normal file
66
development/codeblocks/codeblocks.SlackBuild
Normal file
|
@ -0,0 +1,66 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Code::Blocks
|
||||
# Written by Jeanne-Kamikaze (AKA SlackerJeanne) (jeannekamikaze@gmail.com)
|
||||
# Modified by Erik Hanson <erik@slackbuilds.org>
|
||||
|
||||
# The software belongs and is copyrighted by the Code::Blocks team.
|
||||
# The proper license can be found along with the software source code.
|
||||
|
||||
set -eu
|
||||
|
||||
PRGNAM=codeblocks
|
||||
VERSION=8.02
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
DOC="AUTHORS BUGS BUILD COMPILERS COPYING NEWS README TODO"
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG
|
||||
rm -rf $TMP/$PRGNAM-$VERSION
|
||||
cd $TMP
|
||||
tar xvf $CWD/$PRGNAM-$VERSION-src.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var/lib \
|
||||
--mandir=/usr/man \
|
||||
--disable-static \
|
||||
--with-contrib-plugins=all \
|
||||
--build=$ARCH-slackware-linux \
|
||||
--host=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
gzip -9 $PKG/usr/man/man?/*.?
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a $DOC $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.tgz
|
8
development/codeblocks/codeblocks.info
Normal file
8
development/codeblocks/codeblocks.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="codeblocks"
|
||||
VERSION="8.02"
|
||||
HOMEPAGE="http://www.codeblocks.org"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/codeblocks/codeblocks-8.02-src.tar.bz2"
|
||||
MD5SUM="ac15b4b3de50d7650c2f7a8dbcb30f88"
|
||||
MAINTAINER="Jeanne-Kamikaze"
|
||||
EMAIL="jeannekamikaze@gmail.com"
|
||||
APPROVED="Erik Hanson"
|
19
development/codeblocks/slack-desc
Normal file
19
development/codeblocks/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------------------------------------------------------|
|
||||
codeblocks: Code::Blocks (a free C++ IDE)
|
||||
codeblocks:
|
||||
codeblocks: Code::Blocks is a free C++ IDE built to meet the most demanding
|
||||
codeblocks: needs of its users. It is designed to be very extensible and fully
|
||||
codeblocks: configurable.
|
||||
codeblocks:
|
||||
codeblocks:
|
||||
codeblocks:
|
||||
codeblocks:
|
||||
codeblocks: http://www.codeblocks.org/
|
||||
codeblocks:
|
Loading…
Reference in a new issue