27 lines
621 B
Bash
27 lines
621 B
Bash
# Template file for 'filteraudio-git'
|
|
pkgname="filteraudio-git"
|
|
version="20150313"
|
|
revision=1
|
|
short_desc="Lightweight audio filtering library for TOX"
|
|
maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
|
|
license="3-clause-BSD"
|
|
homepage="https://tox.im"
|
|
hostmakedepends="git"
|
|
build_style="gnu-makefile"
|
|
|
|
do_fetch() {
|
|
git clone https://github.com/irungentoo/filter_audio.git ${wrksrc}
|
|
}
|
|
|
|
# Development package
|
|
filteraudio-devel-git_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|
|
|