blob: c212328c4e18d4fb710cd4017666756e903eeae1 (
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck)
# Contributor: BrainDamage (https://aur.archlinux.org/account/BrainDamage)
_pkgname="authsae"
pkgname="${_pkgname}-git"
pkgrel=1
pkgver=r444.20230331.cb04ef4
epoch=6
pkgdesc="Authsae provides secure password-based authentication for 802.11s mesh networking."
arch=(
'x86'
'x86_64'
)
# url="https://github.com/cozybit/${_pkgname}"
url="https://github.com/elockman/${_pkgname}"
license=("BSD")
depends=(
"glibc"
#"openssl-1.1"
"openssl>=3"
"libconfig"
# "libcrypto.so>=1.1" "libcrypto.so<2" # openssl-1.1
"libnl"
)
makedepends=(
"cmake"
#"gcc9"
"git"
)
provides=("authsae=${pkgver}")
conflicts=("authsae")
md5sums=("SKIP")
source=("${_pkgname}::git+${url}.git")
pkgver() {
cd "${srcdir}/${_pkgname}"
# _ver="$(git describe --tags | sed 's|^v||' | sed 's|\-[^-]*$||' | tr '-' '_')"
_rev="$(git rev-list --count HEAD)"
_hash="$(git rev-parse --short HEAD)"
_date="$(git log -n 1 --format=tformat:%ci | awk '{print $1}' | tr -d '-')"
# if [ -n "${_ver}" ]; then
# printf %s "${_ver}+r${_rev}.${_date}.${_hash}"
# else
# error "Could not determine version."
# return 1
# fi
if [ -n "${_rev}" ]; then
printf %s "r${_rev}.${_date}.${_hash}"
else
error "Could not determine git commit count."
return 1
fi
}
prepare() {
cd "${srcdir}/${_pkgname}"
msg2 "Removing '-Werror' from 'CMakeLists.txt'"
sed -e 's|\-Werror||' -i CMakeLists.txt
}
build() {
cd "${srcdir}/${_pkgname}"
#export PKG_CONFIG_PATH=/usr/lib/openssl-1.1/pkgconfig
export ADDR2LINE=/usr/bin/addr2line
export AR=/usr/bin/ar
#export CC=/usr/bin/gcc-9
export CC=/usr/bin/gcc
#export CC_AR=/usr/bin/gcc-ar-9
export CC_AR=/usr/bin/gcc-ar
#export CC_RANLIB=/usr/bin/gcc-ranlib-9
export CC_RANLIB=/usr/bin/gcc-ranlib
export LD=/usr/bin/ld
export NM=/usr/bin/nm
export OBJCOPY=/usr/bin/objcopy
export OBJDUMP=/usr/bin/objdump
export RANLIB=/usr/bin/ranlib
export READELF=/usr/bin/readelf
msg2 "Configuring with 'cmake' ..."
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DENABLE_LINUX_TARGETS=ON \
-DCMAKE_ADDR2LINE="${ADDR2LINE}" \
-DCMAKE_AR="${AR}" \
-DCMAKE_C_COMPILER="${CC}" \
-DCMAKE_C_COMPILER_AR="${CC_AR}" \
-DCMAKE_C_COMPILER_RANLIB="${CC_RANLIB}" \
-DCMAKE_LINKER="${LD}" \
-DCMAKE_NM="${NM}" \
-DCMAKE_OBJCOPY="${OBJCOPY}" \
-DCMAKE_OBJDUMP="${OBJDUMP}" \
-DCMAKE_RANLIB="${RANLIB}" \
-DCMAKE_READELF="${READELF}" \
.
# FIXME: the cmake script does something very wrong and attempts to install the config file in prefix+/etc, submit patch to upstream to allow to change that
msg2 "Fixing a cmake script fault: Place config in '/etc/', not '/usr/etc/' ..."
sed -i 's|/usr/etc/|/etc|' cmake_install.cmake
msg2 "Running 'make' ..."
make -j1
}
package() {
cd "${srcdir}/${_pkgname}"
make DESTDIR="${pkgdir}" install
for _docfile in 'PORTING.md' 'README.md'; do
install -D -v -m644 "${_docfile}" "${pkgdir}/usr/share/doc/${_pkgname}/${_docfile}"
done
}
|