49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
# Template file for 're'
|
|
pkgname=re
|
|
version=1.1.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
|
|
makedepends="libressl-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/v${version}.tar.gz"
|
|
checksum=82afc903a6b1e436b357f05eb11560ec681712291dd9c83c408465c895f28b5d
|
|
shlib_provides="libre.so"
|
|
|
|
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 docs/COPYING
|
|
}
|
|
|
|
re-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/re/re.mk
|
|
}
|
|
}
|