mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-13 05:55:12 +02:00
27 lines
712 B
Bash
27 lines
712 B
Bash
# Template file for 'liblo'
|
|
pkgname=liblo
|
|
version=0.32
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="Lightweight OSC implementation"
|
|
maintainer="Rutpiv <roger_freitas@live.com>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="http://liblo.sourceforge.net/"
|
|
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=5df05f2a0395fc5ac90f6b538b8c82bb21941406fd1a70a765c7336a47d70208
|
|
make_check=no # Tests freeze or fail intermittently.
|
|
nopie=yes
|
|
|
|
pre_configure() {
|
|
vsed -i '/-Werror/d' configure
|
|
}
|
|
|
|
liblo-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|