mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:47:44 +00:00
Ports: Add glib version 2.69.0
This commit is contained in:
parent
cb10c62327
commit
df176ca2d9
17 changed files with 562 additions and 0 deletions
20
Ports/glib/package.sh
Executable file
20
Ports/glib/package.sh
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=glib
|
||||
version=2.69.0
|
||||
depends="libiconv libffi zlib gettext"
|
||||
useconfigure=true
|
||||
configopts="--cross-file ../cross_file-$SERENITY_ARCH.txt"
|
||||
files="https://gitlab.gnome.org/GNOME/glib/-/archive/2.69.0/glib-${version}.tar.gz glib-${version}.tar.gz 35af83aedf34b96f1e99ed9c995c50960509f504750fb4def2440a9406b00a95"
|
||||
auth_type=sha256
|
||||
|
||||
configure() {
|
||||
run meson _build $configopts
|
||||
}
|
||||
|
||||
build() {
|
||||
run ninja -C _build
|
||||
}
|
||||
|
||||
install() {
|
||||
run meson install -C _build --destdir $SERENITY_BUILD_DIR/Root
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue