-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Enable more functionalities
- Loading branch information
Showing
2 changed files
with
24 additions
and
15 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 |
---|---|---|
@@ -1,29 +1,39 @@ | ||
PKGNAME=fwupd | ||
PKGSEC=admin | ||
PKGDEP="appstream-glib colord gcab gpgme libarchive libsoup polkit sqlite \ | ||
systemd" | ||
BUILDDEP="docbook2x docbook-sgml fwupdate gtk-doc gobject-introspection \ | ||
intltool meson valgrind vim vala" | ||
systemd libxmlb python-3 libgusb json-glib pycairo efivar gnutls \ | ||
polkit shared-mime-info modemmanager glib libgpg-error elfutils \ | ||
colord systemd dbus pillow pygobject-3 pango" | ||
BUILDDEP="docbook-sgml gtk-doc gobject-introspection intltool meson vala \ | ||
valgrind pkg-config" | ||
PKGDES="Firmware update daemon and utilities" | ||
|
||
MESON_AFTER="-Denable-doc=false \ | ||
-Denable-man=false \ | ||
-Denable-thunderbolt=false \ | ||
-Denable-colorhug=true \ | ||
-Denable-tests=false" | ||
MESON_AFTER="-Dagent=true | ||
-Dgtkdoc=true \ | ||
-Dgpg=true \ | ||
-Dman=true \ | ||
-Dpkcs7=true \ | ||
-Dplugin_modem_manager=true \ | ||
-Dplugin_nvme=true \ | ||
-Dplugin_redfish=true \ | ||
-Dsystemd=true \ | ||
-Dconsolekit=true \ | ||
-Dtests=false" | ||
|
||
if [[ "${CROSS:-$ARCH}" = "amd64" ]]; then | ||
MESON_AFTER+=" -Dplugin_dell=true \ | ||
MESON_AFTER+=" -Denable-thunderbolt=true \ | ||
-Dplugin_dell=true \ | ||
-Dplugin_synaptics=true" | ||
BUILDDEP+=" gnu-efi" | ||
BUILDDEP+=" libsmbios thunderbolt-software-user-space" | ||
else | ||
MESON_AFTER+=" -Dplugin_dell=false \ | ||
MESON_AFTER+=" -Denable-thunderbolt=false \ | ||
-Dplugin_dell=false \ | ||
-Dplugin_synaptics=false" | ||
fi | ||
if [[ "${CROSS:-$ARCH}" != mips* && "${CROSS:-$ARCH}" != "powerpc" && \ | ||
"${CROSS:-$ARCH}" != "ppc64" ]]; then | ||
BUILDDEP+=" dejavu-fonts py2cairo pygobject-3 pillow" | ||
MESON_AFTER+=" -Denable-uefi=true" | ||
BUILDDEP+=" fontconfig freetype dejavu-fonts gnu-efi cairo" | ||
MESON_AFTER+=" -Dplugin_uefi=true" | ||
fi | ||
|
||
PKGBREAK="gnome-software<=3.26.1" |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
VER=1.2.5 | ||
VER=1.2.7 | ||
SRCTBL="https://github.com/hughsie/fwupd/archive/$VER.tar.gz" | ||
SUBDIR="fwupd-$VER" | ||
REL=1 |