mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
a42812d60c
popt: too old to have a working config.guess libusb-compat: not needed for gpg2 gpg2: depend on libusb not libusb-compat Signed-off-by: Thierry Laurion <insurgo@riseup.net>
27 lines
581 B
Makefile
27 lines
581 B
Makefile
modules-$(CONFIG_POPT) += popt
|
|
|
|
popt_version := 1.19
|
|
popt_dir := popt-$(popt_version)
|
|
popt_tar := popt-$(popt_version).tar.gz
|
|
popt_url := https://fossies.org/linux/misc/$(popt_tar)
|
|
popt_hash := c25a4838fc8e4c1c8aacb8bd620edb3084a3d63bf8987fdad3ca2758c63240f9
|
|
|
|
popt_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--prefix "/" \
|
|
--host $(MUSL_ARCH)-elf-linux \
|
|
|
|
|
|
popt_target := \
|
|
$(MAKE_JOBS) \
|
|
$(CROSS_TOOLS) \
|
|
&& $(MAKE) \
|
|
-C "$(build)/$(popt_dir)" \
|
|
$(CROSS_TOOLS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
install
|
|
|
|
popt_libraries := src/.libs/libpopt.so.0
|
|
|
|
popt_depends := $(musl_dep)
|