New package: sonic-0.2.0

This commit is contained in:
Joey 2020-07-05 12:17:52 -04:00 committed by Piotr
parent 74f7d61681
commit 6264cf179a
4 changed files with 37 additions and 0 deletions

View file

@ -3994,3 +3994,4 @@ libSeExpr2Editor.so.3 seexpr-krita-3.4.4.0_1
libSeExpr2.so.3 seexpr-krita-3.4.4.0_1
liburing.so.1 liburing-0.7_1
libbson-1.0.so.0 libbson-1.17.0_1
libsonic.so.0 libsonic-0.2.0_1

1
srcpkgs/libsonic Symbolic link
View file

@ -0,0 +1 @@
sonic

1
srcpkgs/libsonic-devel Symbolic link
View file

@ -0,0 +1 @@
sonic

34
srcpkgs/sonic/template Normal file
View file

@ -0,0 +1,34 @@
# Template file for 'sonic'
pkgname=sonic
version=0.2.0
revision=1
wrksrc=${pkgname}-release-${version}
build_style=gnu-makefile
short_desc="Simple library to speed up or slow down speech"
maintainer="Joey <joey@imap.cc>"
license="Apache-2.0"
homepage="https://github.com/waywardgeek/sonic"
distfiles="https://github.com/waywardgeek/sonic/archive/release-${version}.tar.gz"
checksum=c7827ce576838467590ffa1f935fbe1049e896dfed6c515cf569ad3779c24085
CFLAGS="-fPIC"
post_install() {
vman sonic.1
}
libsonic_package() {
short_desc+=" - shared libraries"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
libsonic-devel_package() {
depends="libsonic>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.so"
vmove "usr/lib/*.a"
}
}