Merge pull request #1018 from awiouy/sysroot

addon depends: do not install in sysroot
This commit is contained in:
Christian Hewitt 2016-12-07 08:24:31 +04:00 committed by GitHub
commit d7a498f047
4 changed files with 16 additions and 0 deletions

View File

@ -102,6 +102,10 @@ configure_target() {
}
makeinstall_target() {
make install DESTDIR=$INSTALL
}
post_makeinstall_target() {
for ff in $INSTALL/usr/local/bin/*; do mv $ff ${ff}x; done
rm -fr $INSTALL/usr/local/include

View File

@ -37,3 +37,7 @@ PKG_CONFIGURE_OPTS_TARGET="--enable-static \
--with-quantum-depth=8 \
--enable-hdri=no \
--disable-openmp"
makeinstall_target() {
make install DESTDIR=$INSTALL
}

View File

@ -35,3 +35,7 @@ PKG_CONFIGURE_OPTS_TARGET="--enable-shared \
--with-libgif \
--with-libjpeg \
--with-libtiff"
makeinstall_target() {
make install DESTDIR=$INSTALL
}

View File

@ -30,3 +30,7 @@ unpack() {
mkdir -p $PKG_BUILD
cp -r $(get_build_dir sqlite)/* $PKG_BUILD/
}
makeinstall_target() {
make install DESTDIR=$INSTALL
}