1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#!/bin/sh
# Install dependencies in as dependency of the virtual "megapixels-development" package
# to allow quick uninstalling of all things added by this development env
apk add -t megapixels-development git meson gcc musl-dev libconfig-dev linux-headers tiff-dev feedbackd-dev glib-dev gtk4.0-dev libxrandr-dev zbar-dev pulseaudio-dev
# Get sources
git clone https://gitlab.com/megapixels-org/libmegapixels.git
git clone https://gitlab.com/megapixels-org/libdng.git
git clone https://gitlab.com/megapixels-org/megapixels.git
# Build libmegapixels
cd libmegapixels
meson setup build
cd build
meson compile
meson install
cd ..
cd ..
# Build libdng
cd libdng
meson setup build
cd build
meson compile
meson install
cd ..
cd ..
# Build Megapixels
cd megapixels
meson setup build
cd build
meson compile
meson install
cd ..
cd ..
# Install gschema
glib-compile-schemas /usr/local/share/glib-2.0/schemas/
|