mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
development/mysqlcc: Added to 12.0 repository
This commit is contained in:
parent
62aabd9a15
commit
59574d7b80
4 changed files with 94 additions and 0 deletions
1
development/mysqlcc/README
Normal file
1
development/mysqlcc/README
Normal file
|
@ -0,0 +1 @@
|
|||
MySQLcc is a control center for MySQL.
|
66
development/mysqlcc/mysqlcc.SlackBuild
Normal file
66
development/mysqlcc/mysqlcc.SlackBuild
Normal file
|
@ -0,0 +1,66 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for mysqlcc
|
||||
# Written by Michales Michaloudes <korgie@gmail.com>
|
||||
# Modified by Robby Workman <rworkma@slackbuilds.org>
|
||||
|
||||
PRGNAM=mysqlcc
|
||||
VERSION=0.9.8
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
set -e # Exit on most errors
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION-src.tar.gz
|
||||
cd $PRGNAM-$VERSION-src
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a *.txt $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
||||
# For some reason the install is not.. installing (see the makefile)
|
||||
# So... manual copy of executable, wavs, and the syntax.txt
|
||||
mkdir -p $PKG/usr/bin/ $PKG/usr/share/$PRGNAM
|
||||
cp -p mysqlcc $PKG/usr/bin/mysqlcc
|
||||
cp -p *.wav $PKG/usr/share/$PRGNAM/
|
||||
|
||||
mv $PKG/usr/doc/$PRGNAM-$VERSION/syntax.txt $PKG/usr/share/$PRGNAM/
|
||||
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/mysqlcc/mysqlcc.info
Normal file
8
development/mysqlcc/mysqlcc.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="mysqlcc"
|
||||
VERSION="0.9.8"
|
||||
HOMEPAGE="http://sourceforge.net/projects/mysqlcc"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/mysqlcc/mysqlcc-0.9.8-src.tar.gz"
|
||||
MD5SUM="c9913784e9a700c6e9a146ffea1992d0"
|
||||
MAINTAINER="Michales Michaloudes"
|
||||
EMAIL="korgie@gmail.com"
|
||||
APPROVED="rworkman"
|
19
development/mysqlcc/slack-desc
Normal file
19
development/mysqlcc/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------------------------------------------------------|
|
||||
mysqlcc: mysqlcc (MySQL Control Center)
|
||||
mysqlcc:
|
||||
mysqlcc: MySQLcc is a control center for MySQL.
|
||||
mysqlcc:
|
||||
mysqlcc:
|
||||
mysqlcc:
|
||||
mysqlcc:
|
||||
mysqlcc:
|
||||
mysqlcc:
|
||||
mysqlcc:
|
||||
mysqlcc:
|
Loading…
Reference in a new issue