summaryrefslogtreecommitdiffstats
path: root/extra/mysql/Pkgfile
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-04-27 17:30:13 +0200
committertnut <thierryn1 at hispeed dot ch>2010-04-27 17:30:13 +0200
commit3bbede4b7f01b36dd98893db4b3daf985161579a (patch)
tree928d85ac0737fa81bb1c7c317e82ec6f589c078a /extra/mysql/Pkgfile
parenta717ad31d5f508804b49c9f5b9313af1b352c17a (diff)
downloadnutyx-pakxe-3bbede4b7f01b36dd98893db4b3daf985161579a.tar.gz
nutyx-pakxe-3bbede4b7f01b36dd98893db4b3daf985161579a.tar.bz2
nutyx-pakxe-3bbede4b7f01b36dd98893db4b3daf985161579a.tar.xz
nutyx-pakxe-3bbede4b7f01b36dd98893db4b3daf985161579a.zip
mysql dans test
Diffstat (limited to 'extra/mysql/Pkgfile')
-rw-r--r--extra/mysql/Pkgfile52
1 files changed, 0 insertions, 52 deletions
diff --git a/extra/mysql/Pkgfile b/extra/mysql/Pkgfile
deleted file mode 100644
index 2e50c579f..000000000
--- a/extra/mysql/Pkgfile
+++ /dev/null
@@ -1,52 +0,0 @@
-# Description: Serveur de base de données MySQL
-# URL: http://www.mysql.com
-# Maintainer: NuTyX core team
-# Packager: thierryn1 at hispeed dot ch
-# Depends on: mysqlclient
-
-name=mysql
-version=5.1.41
-release=1
-source=(http://mirror.switch.ch/mirror/mysql/Downloads/MySQL-5.1/$name-$version.tar.gz \
- mysql.nutyx.patch)
-
-build () {
- source /etc/blfs-bootscripts
- wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
- tar xvf $scripts-$scriptsversion.tar.bz2
- patch -Np0 -i mysql.nutyx.patch
- cd $name-$version
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --libexecdir=/usr/sbin \
- --localstatedir=/srv/mysql \
- --enable-assembler \
- --enable-thread-safe-client \
- --enable-local-infile \
- --with-unix-socket-path=/var/run/mysql/mysql.sock \
- --with-extra-charsets=all \
- --with-berkeley-db \
- --without-debug \
- --without-readline \
- --without-docs \
- --without-bench
- make -j2
- make DESTDIR=$PKG install
- rm -r $PKG/usr/{mysql-test,sql-bench}
- for i in mysql mysql_upgrade \
- mysqladmin mysqlbinlog \
- mysqlcheck mysqldump mysqlimport mysqlshow \
- mysqlslap mysqltest mysql_config
- do rm -r $PKG/usr/bin/$i
- done
- rm $PKG/usr/share/mysql/charsets/README
- mkdir -p $PKG/etc
- install -v -m644 $PKG/usr/share/mysql/my-medium.cnf \
- $PKG/etc/my.cnf
- sed -i -e s/^skip-federated/#skip-federated/ \
- $PKG/etc/my.cnf
- cd ../$scripts-$scriptsversion
- make DESTDIR=$PKG install-mysql
- # Suppression des librairies
- rm -r $PKG/usr/{include,lib}
-}