Add support for DESTDIR variable in make install.

This commit is contained in:
Andrius Štikonas 2021-04-02 12:24:40 +01:00
parent dcec416d0f
commit 70d1fc4163
60 changed files with 147 additions and 163 deletions

View file

@ -28,7 +28,7 @@ src_compile() {
}
src_install() {
make install MAKEINFO=true
make install MAKEINFO=true DESTDIR="${DESTDIR}"
ln -sf "${PREFIX}"/bin/autoconf-2.54 "${PREFIX}"/bin/autoconf
ln -sf "${PREFIX}"/bin/autoconf-2.54 "${DESTDIR}${PREFIX}"/bin/autoconf
}

View file

@ -18,9 +18,9 @@ src_configure() {
}
src_compile() {
make MAKEINFO=true
make MAKEINFO=true DESTDIR="${DESTDIR}"
}
src_install() {
make install MAKEINFO=true
make install MAKEINFO=true DESTDIR="${DESTDIR}"
}