New package: Lilv - API for LV2 plugins

This commit is contained in:
davehome 2011-10-28 09:33:03 +00:00
parent aa67f4ffdb
commit c1dfe75ae4
9 changed files with 77 additions and 0 deletions

1
srcpkgs/liblilv Symbolic link
View File

@ -0,0 +1 @@
lilv

View File

@ -0,0 +1 @@
lilv

1
srcpkgs/lilv-devel Symbolic link
View File

@ -0,0 +1 @@
lilv

2
srcpkgs/lilv/depends Normal file
View File

@ -0,0 +1,2 @@
abi_depends=">=0.5.0"
api_depends="${abi_depends}"

View File

@ -0,0 +1,16 @@
# Template file for 'liblilv'.
#
short_desc="${short_desc} - Runtime library"
long_desc="${long_desc}
This package contains the lilv runtime library."
Add_dependency run glibc
Add_dependency run libserd
Add_dependency run libsord
do_install()
{
vmove "usr/lib/*.so*" usr/lib
chmod 755 ${DESTDIR}/usr/lib/*.so*
}

View File

@ -0,0 +1,14 @@
# Template file for 'lilv-bash-completion'.
#
short_desc="${short_desc} - Bash completion for Lilv"
long_desc="${long_desc}
This package contains a bash completion file for the Lilv programs."
Add_dependency run bash-completion
Add_dependency run lilv
do_install()
{
vmove usr/etc usr
}

View File

@ -0,0 +1,16 @@
# Template file for 'lilv-devel'.
#
short_desc="${short_desc} - Development files"
long_desc="${long_desc}
This package contains files for development: headers, etc."
Add_dependency run glibc-devel
Add_dependency run sord-devel
Add_dependency run liblilv
do_install()
{
vmove usr/include usr
vmove usr/lib/pkgconfig usr/lib
}

25
srcpkgs/lilv/template Normal file
View File

@ -0,0 +1,25 @@
# Template file for 'lilv'
pkgname=lilv
version=0.5.0
build_style=waf
homepage="http://drobilla.net/software/lilv/"
distfiles="http://download.drobilla.net/${pkgname}-${version}.tar.bz2"
short_desc="Lilv is a simple yet powerful C API for using LV2 plugins."
maintainer="davehome <davehome@redthumb.info.tm>"
license="ISC"
checksum=3540b1f27f126f20222159bdf519a09631804e1011e2e1f063bff90d328333cd
long_desc="
Lilv is a library to make the use of LV2 plugins as simple as possible for
applications. Lilv is the successor to SLV2, rewritten to be significantly
faster and have minimal dependencies."
subpackages="$pkgname-devel lib$pkgname $pkgname-bash-completion"
Add_dependency run glibc
Add_dependency run libserd
Add_dependency run libsord
Add_dependency run liblilv
Add_dependency build pkg-config
Add_dependency build python
Add_dependency build sord-devel

View File

@ -927,3 +927,4 @@ libabiword-2.8.so libabiword abiword-devel
libmpg123.so.0 libmpg123 mpg123-devel
libopenal.so.1 libopenal libopenal-devel
libalut.so.0 freealut freealut-devel
liblilv-0.so.0 liblilv lilv-devel