53 lines
1.2 KiB
Bash
53 lines
1.2 KiB
Bash
# Template file for 're'
|
|
pkgname=re
|
|
version=2.7.0
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
make_build_args="RELEASE=1 EXTRA_CFLAGS=$CFLAGS
|
|
EXTRA_LFLAGS=$LDFLAGS USE_OPENSSL=yes USE_DTLS=yes
|
|
USE_DTLS_SRTP=yes USE_ZLIB=yes"
|
|
make_install_args="$make_build_args"
|
|
make_use_env=1
|
|
hostmakedepends="pkg-config"
|
|
makedepends="openssl-devel zlib-devel"
|
|
short_desc="Portable library for real-time communications"
|
|
maintainer="John <me@johnnynator.dev>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github.com/baresip/re/"
|
|
distfiles="https://github.com/baresip/re/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=999f02b4299f9f4bbf637cf610099b656225fef0ce08ce56728978214d448343
|
|
|
|
CFLAGS=-D_GNU_SOURCE
|
|
|
|
case $XBPS_TARGET_MACHINE in
|
|
i686*) arch="i686";;
|
|
x86_64*) arch="x86_64";;
|
|
armv6*) arch="arm6";;
|
|
aarch64*) arch="arm64";;
|
|
arm*) arch="arm";;
|
|
mips*) arch="mips";;
|
|
ppc64*) arch="ppc64";;
|
|
esac
|
|
make_build_args+=" ARCH=$arch"
|
|
make_install_args+=" ARCH=$arch"
|
|
|
|
pre_build() {
|
|
make ${make_build_args} info
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
re-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/re/re.mk
|
|
}
|
|
}
|