forked from lix-project/lix
* Fix descriptor for Subversion 0.21.0.
This commit is contained in:
parent
6faa154c89
commit
f546e0cda4
|
@ -5,10 +5,10 @@ export PATH=/bin:/usr/bin
|
|||
export LDFLAGS=-s
|
||||
|
||||
top=`pwd`
|
||||
tar xvfz $src
|
||||
cd subversion-*
|
||||
./configure --prefix=$top --with-ssl
|
||||
make
|
||||
make install
|
||||
cd ..
|
||||
rm -rf subversion-*
|
||||
tar xvfz $src || exit 1
|
||||
cd subversion-* || exit 1
|
||||
./configure --prefix=$top --with-ssl || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
cd $top || exit 1
|
||||
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("actPkgConfig", Pkg(Fix("./pkgconfig-0.15.0.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")))
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue