forked from bubblydoo/lambda-layer-sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Dockerfile to work with the new libvips build system
- Loading branch information
Showing
4 changed files
with
56 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ | |
!package.json | ||
!webpack.config.js | ||
!test.js | ||
!build-sharp.sh | ||
!build-sharp.sh | ||
!build-libvips.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
export PKG_CONFIG_PATH=/usr/lib64/pkgconfig:/opt/lib/pkgconfig | ||
if [[ -e ./autogen.sh ]]; then | ||
./autogen.sh --prefix=/opt | ||
./configure --prefix=/opt | ||
make install | ||
else | ||
meson setup build --prefix /opt --libdir lib | ||
cd build | ||
meson compile | ||
meson install | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters