refactor variable names according to changes in Pmodules/0.99.15 in build-scripts of group 'Tools'

This commit is contained in:
2018-07-11 10:36:49 +02:00
parent 4a86bd5aa4
commit 5e318adcb3
9 changed files with 17 additions and 24 deletions

View File

@@ -11,8 +11,8 @@ Darwin )
esac
pbuild::configure() {
cd "${MODULE_SRCDIR}"
"${MODULE_SRCDIR}"/configure \
cd "${SRC_DIR}"
"${SRC_DIR}"/configure \
--prefix="${PREFIX}" \
--with-tcltk \
--with-perl="${PERL_PREFIX}/bin/perl" \
@@ -20,14 +20,14 @@ pbuild::configure() {
}
pbuild::build() {
cd "${MODULE_SRCDIR}"
cd "${SRC_DIR}"
make
make -C contrib/subtree prefix="${prefix}"
}
pbuild::install() {
cd "${MODULE_SRCDIR}"
cd "${SRC_DIR}"
make install
make install-doc
make -C contrib/subtree prefix="${PREFIX}" install