lilv: remove long_desc.

This commit is contained in:
Juan RP 2014-02-21 11:49:33 +01:00
parent 668fdfcbb8
commit 94ec42cf98
1 changed files with 13 additions and 11 deletions

View File

@ -1,26 +1,27 @@
# Template file for 'lilv'
pkgname=lilv
version=0.14.4
revision=2
revision=3
build_style=waf
configure_args="--dyn-manifest"
makedepends="pkg-config python serd-devel>=0.18.0 sord-devel
sratom-devel>=0.4.0 lv2"
short_desc="Lilv is a simple yet powerful C API for using LV2 plugins."
hostmakedepends="pkg-config python"
makedepends="python-devel serd-devel>=0.18.0 sord-devel sratom-devel>=0.4.0 lv2"
short_desc="A simple yet powerful C API for using LV2 plugins"
maintainer="davehome <davehome@redthumb.info.tm>"
license="ISC"
homepage="http://drobilla.net/software/lilv/"
distfiles="http://download.drobilla.net/${pkgname}-${version}.tar.bz2"
checksum=4a92b3961f1483370509200741c33e826e4205308bee09923d0fd938653fdf8b
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."
post_install() {
vmkdir usr/share/bash-completion/completions
mv ${DESTDIR}/usr/etc/bash_completion.d/* ${DESTDIR}/usr/share/bash-completion/completions
}
liblilv_package() {
short_desc+=" - Runtime library"
pkg_install() {
vmove "usr/lib/*.so*"
vmove "usr/lib/*.so.*"
chmod 755 ${PKGDESTDIR}/usr/lib/*.so*
}
}
@ -29,15 +30,16 @@ lilv-bash-completion_package() {
depends="bash-completion lilv"
short_desc+=" - Bash completion for Lilv"
pkg_install() {
vmove usr/etc
vmove usr/share/bash-completion
}
}
lilv-devel_package() {
depends="sord-devel liblilv>=${version}"
depends="sord-devel liblilv>=${version}_${revision}"
short_desc+=" - Development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}