8 lines
292 B
Bash
8 lines
292 B
Bash
|
#!/bin/bash
|
||
|
VERSION=`cat VERSION`
|
||
|
mkdir -p distromatic-${VERSION}
|
||
|
cp -a src html po distromatic-${VERSION}/
|
||
|
cp CMakeLists.txt AUTHORS COPYING ChangeLog distromatic.conf VERSION distromatic-${VERSION}/
|
||
|
tar cJf distromatic-${VERSION}.tar.xz distromatic-${VERSION}
|
||
|
rm -rf distromatic-${VERSION}
|