mirror of
https://github.com/outbackdingo/scratchpkg.git
synced 2026-02-05 08:28:00 +00:00
9 lines
157 B
Bash
Executable File
9 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
name=${1:-foo}
|
|
version=${2:-0.1}
|
|
release=${3:-1}
|
|
outputdir=${4:-/tmp}
|
|
target=${5:-PWD}
|
|
tar -cvJpf $outputdir/$name-$version-$release.spkg.txz *
|