libIDL: remove long_desc.
This commit is contained in:
parent
6a6d29548e
commit
8b155b9368
|
@ -1,50 +1,25 @@
|
||||||
# Template build file for 'libIDL'.
|
# Template build file for 'libIDL'.
|
||||||
pkgname=libIDL
|
pkgname=libIDL
|
||||||
version=0.8.13
|
version=0.8.13
|
||||||
revision=5
|
revision=6
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
hostmakedepends="pkg-config flex"
|
hostmakedepends="pkg-config flex"
|
||||||
makedepends="libglib-devel"
|
makedepends="libfl-devel libglib-devel"
|
||||||
short_desc="CORBA Interface Definition Language parser"
|
short_desc="CORBA Interface Definition Language parser"
|
||||||
homepage="http://projects.gnome.org/ORBit2/"
|
homepage="http://projects.gnome.org/ORBit2/"
|
||||||
license="LGPL-2.1"
|
license="LGPL-2.1"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
distfiles="${GNOME_SITE}/$pkgname/0.8/$pkgname-$version.tar.bz2"
|
distfiles="${GNOME_SITE}/$pkgname/0.8/$pkgname-$version.tar.bz2"
|
||||||
checksum=bccc7e10dae979518ff012f8464e47ec4b3558a5456a94c8679653aa0b262b71
|
checksum=bccc7e10dae979518ff012f8464e47ec4b3558a5456a94c8679653aa0b262b71
|
||||||
long_desc="
|
|
||||||
libIDL is a library licensed under the GNU LGPL for creating trees of
|
|
||||||
CORBA Interface Definition Language (IDL) files, which is a
|
|
||||||
specification for defining portable interfaces. libIDL was initially
|
|
||||||
written for ORBit (the ORB from the GNOME project, and the primary
|
|
||||||
means of libIDL distribution). However, the functionality was
|
|
||||||
designed to be as reusable and portable as possible.
|
|
||||||
|
|
||||||
It is written in C, and the aim is to retain the ability to compile it
|
|
||||||
on a system with a standard C compiler. Preprocessed parser files are
|
|
||||||
included so you are not forced to rebuild the parser, however an
|
|
||||||
effort is made to keep the parser and lexer compatible with standard
|
|
||||||
Unix yacc. Currently, flex is required to generate the lexical
|
|
||||||
scanner.
|
|
||||||
|
|
||||||
With libIDL, you can parse an IDL file which will be automatically run
|
|
||||||
through the C preprocessor (on systems with one available), and have
|
|
||||||
detailed error and warning messages displayed. On a compilation
|
|
||||||
without errors, the tree is returned to the custom application.
|
|
||||||
libIDL performs compilation phases from lexical analysis to nearly
|
|
||||||
full semantic analysis with some optimizations, and will attempt to
|
|
||||||
generate meaningful errors and warnings for invalid or deprecated IDL."
|
|
||||||
|
|
||||||
if [ "$CROSS_BUILD" ]; then
|
|
||||||
makedepends+=" libfl-devel"
|
|
||||||
fi
|
|
||||||
|
|
||||||
libIDL-devel_package() {
|
libIDL-devel_package() {
|
||||||
depends="libIDL>=${version}"
|
depends="${sourcepkg}>=${version}_${revision}"
|
||||||
short_desc+=" -- development files"
|
short_desc+=" -- development files"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/bin
|
vmove usr/bin
|
||||||
vmove usr/include
|
vmove usr/include
|
||||||
vmove usr/lib/pkgconfig
|
vmove usr/lib/pkgconfig
|
||||||
vmove "usr/lib/*.a"
|
vmove "usr/lib/*.a"
|
||||||
|
vmove "usr/lib/*.so"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue