xref: /PHP-7.3/scripts/dev/phpextdist (revision 2c9bf198)
1#! /bin/sh
2if test $# -lt 2; then
3	echo "usage: phpextdist <extension> <version>";
4	exit 1
5fi
6
7phpize=`php-config --prefix`/bin/phpize
8distname="$1-$2"
9
10if test ! -f Makefile.in || test ! -f config.m4; then
11	echo "Did not find required files in current directory"
12	exit 1
13fi
14
15rm -rf modules *.lo *.o *.la config.status config.cache \
16config.log libtool php_config.h config_vars.mk Makefile
17
18myname=`basename \`pwd\``
19cd ..
20cp -rp $myname $distname
21cd $distname
22$phpize
23cd ..
24tar cf $distname.tar $distname
25rm -rf $distname $distname.tar.*
26gzip --best $distname.tar
27mv $distname.tar.gz $myname
28