2022-12-21 15:15:22 +00:00
|
|
|
package=tor_linux
|
2022-12-24 20:12:56 +00:00
|
|
|
$(package)_version=0.4.7.12
|
2022-06-02 12:50:33 +00:00
|
|
|
$(package)_download_path=https://dist.torproject.org/
|
|
|
|
$(package)_file_name=tor-$($(package)_version).tar.gz
|
2022-12-24 20:12:56 +00:00
|
|
|
$(package)_sha256_hash=3b5d969712c467851bd028f314343ef15a97ea457191e93ffa97310b05b9e395
|
2022-06-02 12:50:33 +00:00
|
|
|
$(package)_dependencies=libevent openssl zlib
|
|
|
|
|
|
|
|
define $(package)_set_vars
|
|
|
|
$(package)_config_opts=--disable-asciidoc --disable-manpage --disable-html-manual --disable-system-torrc
|
|
|
|
$(package)_config_opts+=--disable-module-relay --disable-lzma --disable-zstd --enable-static-tor
|
|
|
|
$(package)_config_opts+=--with-libevent-dir=$(host_prefix) --with-openssl-dir=$(host_prefix)
|
|
|
|
$(package)_config_opts+=--with-zlib-dir=$(host_prefix) --disable-tool-name-check --enable-fatal-warnings
|
|
|
|
$(package)_config_opts+=--prefix=$(host_prefix)
|
2022-12-23 15:43:34 +00:00
|
|
|
$(package)_cflags+=-O2
|
|
|
|
$(package)_cxxflags+=-O2
|
2022-06-02 12:50:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_config_cmds
|
2022-12-23 15:43:34 +00:00
|
|
|
$($(package)_autoconf) $($(package)_config_opts)
|
2022-06-02 12:50:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
|
|
|
$(MAKE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
|
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_postprocess_cmds
|
2022-12-23 15:43:34 +00:00
|
|
|
$(host_toolchain)strip -s -D bin/tor && \
|
2022-06-02 12:50:33 +00:00
|
|
|
mkdir $($(package)_staging_prefix_dir)/Tor/ && \
|
|
|
|
cp bin/tor $($(package)_staging_prefix_dir)/Tor
|
|
|
|
endef
|