Browse Source

Clifford Wolf:


			
			
				rocklinux
			
			
		
Clifford Wolf 20 years ago
parent
commit
3c44d57c16
2 changed files with 12 additions and 2 deletions
  1. +3
    -0
      package/kasc/swig/swig.conf
  2. +9
    -2
      package/rene/subversion/subversion.conf

+ 3
- 0
package/kasc/swig/swig.conf

@ -0,0 +1,3 @@
# also build and install swig runtime
makeopt="$makeopt swig runtime"
makeinstopt="$makeinstopt install-runtime"

+ 9
- 2
package/rene/subversion/subversion.conf

@ -68,10 +68,17 @@ else
make install; cd $OLDPWD
}
# build and install python bindings
svn_inst_py() {
make swig-py
make install-swig-py
}
hook_add postmake 3 "install_init svnserve $confdir/svnserve.init"
hook_add postmake 4 "cp -vrf tools $docdir"
# if swig is present build and install the perl
pkginstalled swig && hook_add postmake 5 "svn_inst_pl"
# if swig is present build and install the perl and python bindings
pkginstalled swig && [ -n "$( type -p perl )" ] && hook_add postmake 5 "svn_inst_pl"
pkginstalled swig && [ -n "$( type -p python )" ] && hook_add postmake 5 "svn_inst_py"
fi

Loading…
Cancel
Save