mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 03:48:57 +00:00
16 lines
201 B
Bash
16 lines
201 B
Bash
source $stdenv/setup
|
|
|
|
unzip $src
|
|
cd axis2-*
|
|
mkdir -p $out
|
|
cp -av * $out
|
|
cd webapp
|
|
ant
|
|
cd ..
|
|
mkdir -p $out/webapps
|
|
cp dist/axis2.war $out/webapps
|
|
cd $out/webapps
|
|
mkdir axis2
|
|
cd axis2
|
|
unzip ../axis2.war
|