mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
af1c3c64b0
(This used to be commit db8d78f187
)
12 lines
209 B
Bash
Executable File
12 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION=$1
|
|
|
|
svn export . samba-$VERSION || exit 1
|
|
|
|
( cd samba-$VERSION/source
|
|
./autogen.sh || exit 1
|
|
./configure || exit 1
|
|
make dist || exit 1
|
|
) && tar -zcf samba-$VERSION.tar.gz samba-$VERSION
|