blob: c5a1f61be4d8612b6e4bdeb8d73d808b6a7c162e (
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
|
# Maintainer: Robert Falkenberg <robert.falkenberg@srs.io>
pkgbase=srsran-project-git
pkgname=$pkgbase
_pkgname=srsRAN_Project
pkgver=23.10.1.r0.g374200d
pkgrel=1
pkgdesc='The srsRAN Project is a complete 5G RAN solution, featuring an ORAN-native CU/DU developed by (SRS)'
arch=('x86_64' 'aarch64')
url='https://www.srsran.com'
license=('AGPL3')
depends=(
'fftw' # discrete Fourier transform
'libelf' # backtraces
'libuhd' # driver for Universal Software Radio Peripheral (USRP)
'lksctp-tools' # SCTP libraries
'mbedtls' # cryptography
'python' # python (required by libuhd)
'yaml-cpp' # config file and command line parser
)
makedepends=(
'boost' # boost development headers (required by libuhd)
'cmake' # build system
'git' # version control system
'gtest' # testing suite
)
optdepends=(
'zeromq: driver for ZeroMQ support'
)
provides=('srsran-project')
conflicts=('srsran-project')
_repo=${SRSRAN_REPO:-'git+https://github.com/srsran/srsRAN_Project.git'}
source=("${_pkgname}::${_repo}")
sha512sums=('SKIP')
options=(!lto)
pkgver() {
cd "${_pkgname}"
( set -o pipefail
# try to get the first reachable tag | append patch version _0 if not present | remove prefix 'release_' | transform to "TAG.rN.gHASH"
git describe --long --tags --abbrev=7 2>/dev/null | sed 's/\(release_[0-9]\+_[0-9]\+\)\(-\)/\1_0\2/' | sed 's/^\(release_\)\1*//' | sed 's/\([^-]*-g\)/r\1/;s/[-_]/./g' ||
# no tag reachable, use number of revisions since beginning of the history
printf "r%s.g%s\n" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
build() {
# clear compiler flags set by makepkg.conf
CFLAGS=""
CXXFLAGS=""
echo "Building $_pkgname..."
cmake \
-B "build" \
-S "${_pkgname}" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_WERROR=False \
-DCMAKE_BUILD_TYPE=Release
make -C "build"
}
check() {
echo "Running tests for $_pkgname..."
cd "$srcdir"/build
ctest $(echo $MAKEFLAGS | grep -Po '\-j[0-9][0-9]*')
}
package() {
cd build
make DESTDIR="$pkgdir" install
}
|