development/camlp5: Updated for version 6.11 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
6e02888185
commit
04dc6af242
|
@ -3,9 +3,10 @@
|
|||
# Slackware build script for camlp5
|
||||
|
||||
# Written by adaptr (jeroen@adaptr.nl)
|
||||
# Rewrite for updated camlp5 (panos.mdma@gmail.com)
|
||||
|
||||
PRGNAM=camlp5
|
||||
VERSION=${VERSION:-6.02.3}
|
||||
VERSION=${VERSION:-6.11}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -46,10 +47,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tgz
|
|||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -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 {} \;
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
## libdir must be under the ocaml install dir!
|
||||
./configure \
|
||||
|
@ -58,7 +59,8 @@ find -L . \
|
|||
|
||||
make world.opt
|
||||
make install DESTDIR=$PKG
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="camlp5"
|
||||
VERSION="6.02.3"
|
||||
HOMEPAGE="http://pauillac.inria.fr/~ddr/camlp5/"
|
||||
DOWNLOAD="http://pauillac.inria.fr/~ddr/camlp5/distrib/src/camlp5-6.02.3.tgz"
|
||||
MD5SUM="a4f5e0dc13c43d50eb655c8e929f556e"
|
||||
VERSION="6.11"
|
||||
HOMEPAGE="http://camlp5.gforge.inria.fr/"
|
||||
DOWNLOAD="http://camlp5.gforge.inria.fr/distrib/src/camlp5-6.11.tgz"
|
||||
MD5SUM="5bd3d0e8a32d762b28107caef631f860"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="ocaml"
|
||||
MAINTAINER="William Bowman"
|
||||
EMAIL="wilbowma@indiana.edu"
|
||||
MAINTAINER="Panagiotis Nikolaou"
|
||||
EMAIL="panos.mdma@gmail.com"
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
|-----handy-ruler------------------------------------------------------|
|
||||
camlp5: camlp5 (an ocaml preprocessor and pretty-printer)
|
||||
camlp5:
|
||||
camlp5: Camlp5 offers pretty-printing and preprocessing for the ocaml
|
||||
camlp5: language.
|
||||
camlp5: Camlp5 is a preprocessor-pretty-printer of ocaml.
|
||||
camlp5: It also provides parsing and printing tools.
|
||||
camlp5:
|
||||
camlp5: Homepage: http://pauillac.inria.fr/~ddr/camlp5/
|
||||
camlp5: Homepage: http://camlp5.gforge.inria.fr/
|
||||
camlp5:
|
||||
camlp5:
|
||||
camlp5:
|
||||
|
|
Loading…
Reference in New Issue