blob: b28a3d76dccbdbff01171406becce72d55ae03ac (
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
|
# Maintainer: Dennis van der Schagt <dennisschagt@gmail.com>
pkgname=eprosima-fast-cdr
pkgver=2.3.0
pkgrel=1
pkgdesc="eProsima's Fast-CDR for serialization and deserialization"
arch=('x86_64')
url="https://github.com/eProsima/Fast-CDR"
license=('Apache')
depends=()
makedepends=('cmake')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/eProsima/Fast-CDR/archive/v${pkgver}.tar.gz")
noextract=()
sha256sums=('d85ee9e24e105581b49de3e2b6b2585335a8dc98c4cabd288232fffc4b9b6a24')
validpgpkeys=()
build() {
cd "Fast-CDR-$pkgver"
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
.
make -C build
}
package() {
cd "Fast-CDR-$pkgver"
make -C build DESTDIR="$pkgdir/" install
}
|