* Fix descriptor for Subversion 0.21.0.
This commit is contained in:
parent
6faa154c89
commit
f546e0cda4
3 changed files with 16 additions and 7 deletions
|
@ -5,10 +5,10 @@ export PATH=/bin:/usr/bin
|
||||||
export LDFLAGS=-s
|
export LDFLAGS=-s
|
||||||
|
|
||||||
top=`pwd`
|
top=`pwd`
|
||||||
tar xvfz $src
|
tar xvfz $src || exit 1
|
||||||
cd subversion-*
|
cd subversion-* || exit 1
|
||||||
./configure --prefix=$top --with-ssl
|
./configure --prefix=$top --with-ssl || exit 1
|
||||||
make
|
make || exit 1
|
||||||
make install
|
make install || exit 1
|
||||||
cd ..
|
cd $top || exit 1
|
||||||
rm -rf subversion-*
|
rm -rf subversion-* || exit 1
|
||||||
|
|
8
test/fixdescriptors/subversion-0.21.0.fix
Normal file
8
test/fixdescriptors/subversion-0.21.0.fix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
Descr(
|
||||||
|
[ Bind("pkgId", Str("subversion-0.21.0"))
|
||||||
|
, Bind("releaseId", Str("1"))
|
||||||
|
|
||||||
|
, Bind("src", File(Url("http://subversion.tigris.org/files/documents/15/3712/subversion-0.21.0.tar.gz")))
|
||||||
|
, Bind("build", File(Local("../build/subversion-build.sh")))
|
||||||
|
]
|
||||||
|
)
|
|
@ -5,6 +5,7 @@ Descr(
|
||||||
, Bind("actATerm", Pkg(Fix("./aterm-2.0.fix")))
|
, Bind("actATerm", Pkg(Fix("./aterm-2.0.fix")))
|
||||||
, Bind("actPkgConfig", Pkg(Fix("./pkgconfig-0.15.0.fix")))
|
, Bind("actPkgConfig", Pkg(Fix("./pkgconfig-0.15.0.fix")))
|
||||||
, Bind("actGlib", Pkg(Fix("./glib-2.2.1.fix")))
|
, Bind("actGlib", Pkg(Fix("./glib-2.2.1.fix")))
|
||||||
|
, Bind("actSubversion", Pkg(Fix("./subversion-0.21.0.fix")))
|
||||||
|
|
||||||
, Bind("build", File(Local("../../scripts/nix-populate")))
|
, Bind("build", File(Local("../../scripts/nix-populate")))
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue