Makefile 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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 ${TOPDIR}/rules.mk
  4. PKG_NAME:= systemd
  5. PKG_VERSION:= 208
  6. PKG_RELEASE:= 4
  7. PKG_MD5SUM:= df64550d92afbffb4f67a434193ee165
  8. PKG_DESCR:= System and Service Manager
  9. PKG_SECTION:= utils
  10. PKG_DEPENDS:= libblkid libcap
  11. PKG_BUILDDEP:= autotool usbutils glib kmod util-linux libcap
  12. PKG_BUILDDEP+= libgcrypt gperf-host
  13. PKG_URL:= http://freedesktop.org/wiki/Software/systemd/
  14. PKG_SITES:= http://www.freedesktop.org/software/systemd/
  15. PKG_LIBC_DEPENDS:= eglibc glibc
  16. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
  17. include ${TOPDIR}/mk/package.mk
  18. $(eval $(call PKG_template,SYSTEMD,systemd,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  19. AUTOTOOL_STYLE:= autoreconf
  20. TARGET_LDFLAGS+= -lrt
  21. CONFIGURE_ARGS+= --disable-static \
  22. --without-python \
  23. --enable-gudev \
  24. --disable-manpages \
  25. --disable-polkit
  26. # TODO
  27. systemd-install:
  28. include ${TOPDIR}/mk/pkg-bottom.mk