diff options
author | davidovski <david@davidovski.xyz> | 2022-02-05 22:41:34 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-05 22:41:34 +0000 |
commit | 1c0d068fa80521a225c04b642d6e5f332ad00ada (patch) | |
tree | b4d5a502194f0aa25c890e3d3af360c98a886b67 /repo/system | |
parent | bef796ab77b0efc0f2e570e13f1ad16f30e9ccb7 (diff) |
fixed it to work
Diffstat (limited to 'repo/system')
-rw-r--r-- | repo/system/cacerts.xibuild | 1 | ||||
-rw-r--r-- | repo/system/elogind.xibuild | 2 | ||||
-rw-r--r-- | repo/system/glib.xibuild | 2 | ||||
-rw-r--r-- | repo/system/gobject-introspection.xibuild | 4 | ||||
-rw-r--r-- | repo/system/polkit.xibuild | 2 |
5 files changed, 6 insertions, 5 deletions
diff --git a/repo/system/cacerts.xibuild b/repo/system/cacerts.xibuild index 65c41f3..82e6782 100644 --- a/repo/system/cacerts.xibuild +++ b/repo/system/cacerts.xibuild @@ -10,5 +10,6 @@ DESC="Root certificates needed by ssl built using make-ca" package () { # TODO check why this doesnt package /etc/ssl/certs the first time in some occasions bash make-ca -g --force -D $PKG_DEST + bash make-ca -g --force -D $PKG_DEST chmod -R 777 $PKG_DEST || echo "couldnt change permissions for $PKG_DEST" } diff --git a/repo/system/elogind.xibuild b/repo/system/elogind.xibuild index 81cdaea..e9c7fe7 100644 --- a/repo/system/elogind.xibuild +++ b/repo/system/elogind.xibuild @@ -1,7 +1,7 @@ #!/bin/bash MAKEDEPS=(make docbook4-xml docbook-xsl docbook-dtd libxslt) -DEPS=(pam polkit) +DEPS=(pam gperf eudev) PKG_VER=246.10 SOURCE=https://github.com/elogind/elogind/archive/v$PKG_VER/elogind-$PKG_VER.tar.gz diff --git a/repo/system/glib.xibuild b/repo/system/glib.xibuild index 47602a1..18fabf8 100644 --- a/repo/system/glib.xibuild +++ b/repo/system/glib.xibuild @@ -3,7 +3,7 @@ MAKEDEPS=(meson ninja docbook-xsl docbook-dtd) DEPS=(pcre libffi zlib glibc libxslt gdb ) -PKG_VER=2.70.2 +PKG_VER=2.70.3 SOURCE=https://download.gnome.org/sources/glib/$(echo $PKG_VER | cut -d. -f-2)/glib-$PKG_VER.tar.xz DESC="Low level core library" diff --git a/repo/system/gobject-introspection.xibuild b/repo/system/gobject-introspection.xibuild index 508af8b..c217525 100644 --- a/repo/system/gobject-introspection.xibuild +++ b/repo/system/gobject-introspection.xibuild @@ -1,7 +1,7 @@ #!/bin/bash -MAKEDEPS=(meson ninja patch) -DEPS=(python-mako python-markdown) +MAKEDEPS=(meson ninja patch flex) +DEPS=(python-mako python-markdown glib) PKG_VER=1.70.0 SOURCE=https://download.gnome.org/sources/gobject-introspection/$(echo $PKG_VER | cut -d. -f-2)/gobject-introspection-$PKG_VER.tar.xz diff --git a/repo/system/polkit.xibuild b/repo/system/polkit.xibuild index 537a932..149271a 100644 --- a/repo/system/polkit.xibuild +++ b/repo/system/polkit.xibuild @@ -1,6 +1,6 @@ #!/bin/bash -MAKEDEPS=(git gobject-introspection meson libxslt patch) +MAKEDEPS=(git gobject-introspection meson libxslt patch elogind) DEPS=(expat glib js78 pam) PKG_VER=0.120 |