Makefile 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= systemd
  5. PKG_VERSION:= 231
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 899733ad6c157cedbb89aec4efe3bc824dcfd65a1d6f6bebc7b043f7924e39b4
  8. PKG_DESCR:= system and service manager
  9. PKG_SECTION:= base/apps
  10. PKG_DEPENDS:= libcap libmount
  11. PKG_BUILDDEP:= intltool-host libcap util-linux gettext-host
  12. PKG_URL:= https://wiki.freedesktop.org/www/Software/systemd/
  13. PKG_SITES:= https://github.com/systemd/systemd/archive/
  14. PKG_LIBC_DEPENDS:= glibc
  15. DISTFILES:= v$(PKG_VERSION).tar.gz
  16. include $(ADK_TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,SYSTEMD,systemd,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
  18. AUTOTOOL_STYLE:= autogen
  19. CONFIGURE_ARGS+= --disable-static \
  20. --disable-manpages \
  21. --disable-selinux \
  22. --disable-pam \
  23. --disable-ima \
  24. --disable-libcryptsetup \
  25. --disable-efi \
  26. --disable-gnuefi \
  27. --disable-ldconfig \
  28. --disable-tests \
  29. --disable-coverage \
  30. --with-default-dnssec=no \
  31. --without-python \
  32. --disable-acl \
  33. --disable-audit \
  34. --disable-libidn \
  35. --disable-seccomp \
  36. --disable-xkbcommon \
  37. --disable-kdbus \
  38. --disable-localed \
  39. --disable-polkit \
  40. --disable-bzip2 \
  41. --disable-lz4 \
  42. --disable-xz \
  43. --disable-zlib \
  44. --disable-libcurl \
  45. --disable-gcrypt \
  46. --disable-microhttpd \
  47. --disable-qrencode \
  48. --disable-quotacheck \
  49. --disable-rfkill \
  50. --disable-smack \
  51. --disable-hibernate
  52. systemd-install:
  53. $(INSTALL_DIR) $(IDIR_SYSTEMD)/etc
  54. $(CP) $(WRKINST)/etc/* \
  55. $(IDIR_SYSTEMD)/etc
  56. $(INSTALL_DIR) $(IDIR_SYSTEMD)/usr/lib
  57. $(CP) $(WRKINST)/usr/lib/* \
  58. $(IDIR_SYSTEMD)/usr/lib
  59. $(INSTALL_DIR) $(IDIR_SYSTEMD)/usr/bin
  60. $(CP) $(WRKINST)/usr/bin/* \
  61. $(IDIR_SYSTEMD)/usr/bin
  62. include $(ADK_TOPDIR)/mk/pkg-bottom.mk