42 lines
1.3 KiB
Bash
42 lines
1.3 KiB
Bash
# Template file for 'libbytesize'
|
|
pkgname=libbytesize
|
|
version=2.3
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="gettext python3"
|
|
makedepends="mpfr-devel pcre2-devel"
|
|
checkdepends="python3-six"
|
|
short_desc="Library for operations with sizes in bytes"
|
|
maintainer="skmpz <dem.procopiou@gmail.com>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="https://github.com/storaged-project/libbytesize"
|
|
changelog="https://raw.githubusercontent.com/storaged-project/libbytesize/master/NEWS.rst"
|
|
distfiles="https://github.com/storaged-project/libbytesize/releases/download/${version}/libbytesize-${version}.tar.gz"
|
|
checksum=3c74113fc8cd1a2fbd8870fa0ed7cef2ef24d60ef91e7145fbc041f9aa144479
|
|
|
|
pre_check() {
|
|
# Disable test that depends on unpackaged pocketlint
|
|
sed -i 's|canary_tests.sh$||g' tests/Makefile
|
|
# Default locale doesn't work
|
|
sed -i 's|DEFAULT_LOCALE =.*|DEFAULT_LOCALE = "C"|g' tests/libbytesize_unittest.py
|
|
}
|
|
|
|
libbytesize-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|
|
|
|
libbytesize-python3_package() {
|
|
archs=noarch
|
|
depends="python3-six ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - Python3 bindings"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|