source: common/blfs-tool-deps/911-subversion@ 8426d1f

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 8426d1f was 91ff6a9, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Replaced /bin/sh by /bin/bash

  • Property mode set to 100644
File size: 386 bytes
Line 
1#!/bin/bash
2
3# $Id$
4
5set -e
6cd $PKGDIR
7
8./configure --prefix=/usr \
9 --without-berkeley-db \
10 --with-installbuilddir=/usr/lib/apr-0
11make
12make install
13rm doc/{Makefile,doxygen.conf}
14find doc -type d -exec chmod 755 {} \;
15find doc -type f -exec chmod 644 {} \;
16install -v -m755 -d /usr/share/doc/subversion-1.3.1
17cp -v -R doc/* /usr/share/doc/subversion-1.3.1
18
19exit
Note: See TracBrowser for help on using the repository browser.