This repository has been archived by the owner on Aug 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plan.sh
51 lines (47 loc) · 1.73 KB
/
plan.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
pkg_name=zlib
_distname="$pkg_name"
pkg_origin=core
pkg_version=1.2.11
pkg_maintainer="The Habitat Maintainers <humans@habitat.sh>"
pkg_description="\
Compression library implementing the deflate compression method found in gzip \
and PKZIP.\
"
pkg_upstream_url="http://www.zlib.net/"
pkg_license=('zlib')
pkg_source="http://zlib.net/${_distname}-${pkg_version}.tar.gz"
pkg_shasum="c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1"
pkg_dirname="${_distname}-${pkg_version}"
pkg_deps=(
core/glibc
)
pkg_build_deps=(
core/patch
core/make
core/gcc
)
pkg_include_dirs=(include)
pkg_lib_dirs=(lib)
pkg_pconfig_dirs=(lib/pkgconfig)
do_prepare() {
do_default_prepare
# Add explicit linker instructions as the binutils we are using may have its
# own dynamic linker defaults. This is necessary because this Plan is built
# before the `binutils` Plan which will set the new `glibc` dynamic
# linker for all later Plans.
dynamic_linker="$(pkg_path_for glibc)/lib/ld-linux-x86-64.so.2"
LDFLAGS="$LDFLAGS -Wl,-rpath=${LD_RUN_PATH},--enable-new-dtags"
LDFLAGS="$LDFLAGS -Wl,--dynamic-linker=$dynamic_linker"
export LDFLAGS
build_line "Updating LDFLAGS=$LDFLAGS"
}
# ----------------------------------------------------------------------------
# **NOTICE:** What follows are implementation details required for building a
# first-pass, "stage1" toolchain and environment. It is only used when running
# in a "stage1" Studio and can be safely ignored by almost everyone. Having
# said that, it performs a vital bootstrapping process and cannot be removed or
# significantly altered. Thank you!
# ----------------------------------------------------------------------------
if [[ "$STUDIO_TYPE" = "stage1" ]]; then
pkg_build_deps=()
fi