blob: 39cf0ee7eb1a5804973cce16093e02d0e944d254 (
plain)
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
|
_name=7-zip
pkgname=${_name}-full
pkgver=24.08
pkgrel=1
pkgdesc='File archiver with a high compression ratio (full package to replace p7zip)'
url='https://7-zip.org/'
license=('LGPL-2.1-or-later' 'BSD-3-Clause' 'LicenseRef-UnRAR')
arch=('x86_64' 'i686' 'aarch64' 'armv7h')
provides=("${_name}" 'p7zip' '7z.so')
conflicts=('p7zip')
depends=('glibc')
makedepends=('uasm')
_repo='7zip'
_snapshot="${_repo}-${pkgver}"
_url="https://github.com/ip7z/${_repo}"
_manarc="7z${pkgver//./}-linux-x64.tar.xz"
source=(
"${_url}/archive/${pkgver}/${_snapshot}.tar.gz"
"${_url}/releases/download/${pkgver}/${_manarc}" # to get the manual
'01-make.patch'
'02-lib-load-path.patch'
)
sha256sums=(
'a37ab4537d8d2f63b5d6e6aa7300dd9fa728823fa90a7e99bc063c31d6f5dac5'
'9b3a2edf0644a2b00b0a39ab6843f426128e4a6f6f98c40f8c02a668e5b5b59b'
'fc5f46ddb1834c8e518b58c0fe69837b73f2529e3754461541d106f8436bfa67'
'338b732445d3cfa416e40384bd9f0596506aa4b464b3f86aa971af4cfa6084c7'
)
noextract=("${_manarc}")
prepare() {
for p in *.patch; do
patch -p1 -d "${_snapshot}" < "${p}"
done
}
_make() {
echo "Building '${1}'..."
cd "${_snapshot}/${1}"
mkdir -p '_o'
make -sf 'makefile.gcc'
}
_build() {
set -a
case "${CARCH}" in
'x86_64')
PLATFORM='x64'
IS_X64=1
;;
'i686')
PLATFORM='x86'
IS_X86=1
;;
'aarch64')
PLATFORM='arm64'
IS_ARM64=1
;;
'armv7h')
PLATFORM='arm'
;;
esac
USE_ASM=1
CFLAGS_WARN='-Wno-error'
CFLAGS_USER="${CFLAGS}"
CXXFLAGS_USER="${CXXFLAGS}"
LDFLAGS_USER="${LDFLAGS}"
set +a
for target in "$@"; do
(_make "${target}")
done
}
build() {
(_build 'CPP/7zip/'{'UI/Console','Bundles/'{'Alone','Alone7z','Format7zF'}})
}
package() {
cd "${_snapshot}"
install -Dm755 -t "${pkgdir}/usr/bin" \
'CPP/7zip/'{'UI/Console/_o/7z','Bundles/'{'Alone/_o/7za','Alone7z/_o/7zr'}}
install -Dm644 -t "${pkgdir}/usr/lib" \
'CPP/7zip/Bundles/Format7zF/_o/7z.so'
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" \
'DOC/unRarLicense.txt'
local doc="${pkgdir}/usr/share/doc/${pkgname}"
install -Dm644 -t "${doc}" \
'DOC/'{'7zC.txt','7zFormat.txt','lzma.txt','Methods.txt','readme.txt','src-history.txt'}
bsdtar -C "${doc}" -xf "${srcdir}/${_manarc}" 'MANUAL'
}
|