-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunypkg-gettext-build.sh
110 lines (76 loc) · 2.74 KB
/
unypkg-gettext-build.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/usr/bin/env bash
# shellcheck disable=SC2034,SC1091,SC2154
set -vx
######################################################################################################################
### Setup Build System and GitHub
#apt install -y pkg-config build-essential autoconf bison re2c \
# libxml2-dev
wget -qO- uny.nu/pkg | bash -s buildsys
### Installing build dependencies
unyp install python gperf re2c libxml2 groff git libunistring
### Getting Variables from files
UNY_AUTO_PAT="$(cat UNY_AUTO_PAT)"
export UNY_AUTO_PAT
GH_TOKEN="$(cat GH_TOKEN)"
export GH_TOKEN
source /uny/git/unypkg/fn
uny_auto_github_conf
######################################################################################################################
### Timestamp & Download
uny_build_date
mkdir -pv /uny/sources
cd /uny/sources || exit
pkgname="gettext"
pkggit="https://git.savannah.gnu.org/git/gettext.git refs/tags/v[0-9.]*"
gitdepth="--depth=1"
### Get version info from git remote
# shellcheck disable=SC2086
latest_head="$(git ls-remote --refs --tags --sort="v:refname" $pkggit | grep -E "v[0-9]([.0-9]+)+$" | tail -n 1)"
latest_ver="$(echo "$latest_head" | cut --delimiter='/' --fields=3 | sed "s|v||")"
latest_commit_id="$(echo "$latest_head" | cut --fields=1)"
version_details
# Release package no matter what:
echo "newer" >release-"$pkgname"
git_clone_source_repo
#cd "$pkg_git_repo_dir" || exit
#./autogen.sh
#cd /uny/sources || exit
archiving_source
######################################################################################################################
### Build
# unyc - run commands in uny's chroot environment
# shellcheck disable=SC2154
unyc <<"UNYEOF"
set -vx
source /uny/git/unypkg/fn
pkgname="gettext"
version_verbose_log_clean_unpack_cd
get_env_var_values
get_include_paths
####################################################
### Start of individual build script
#unset LD_RUN_PATH
./autogen.sh
libxml2_dir=(/uny/pkg/libxml2/*)
libunistring_dir=(/uny/pkg/libunistring/*)
./configure --prefix=/uny/pkg/"$pkgname"/"$pkgver" \
--with-included-gettext \
--disable-static \
--disable-man \
--with-libxml2-prefix="${libxml2_dir[0]}" \
--with-libunistring-prefix="${libunistring_dir[0]}"
# --docdir=/uny/pkg/"$pkgname"/"$pkgver"/share/doc/gettext \
make -j"$(nproc)"
make -j"$(nproc)" check
make install
chmod -v 0755 /uny/pkg/"$pkgname"/"$pkgver"/lib/preloadable_libintl.so
rm -rf /uny/pkg/gettext/0.22*
####################################################
### End of individual build script
add_to_paths_files
dependencies_file_and_unset_vars
cleanup_verbose_off_timing_end
UNYEOF
######################################################################################################################
### Packaging
package_unypkg