From 7525bf009a58efa2532fe6c245803a2c89240b32 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 20 Feb 2014 18:02:44 +0100 Subject: [PATCH] libguess: remove long_desc. --- srcpkgs/libguess/template | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/srcpkgs/libguess/template b/srcpkgs/libguess/template index 10cfcbf328..8b73f6c1d8 100644 --- a/srcpkgs/libguess/template +++ b/srcpkgs/libguess/template @@ -1,7 +1,7 @@ # Template file for 'libguess' pkgname=libguess version=1.1 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="pkg-config" makedepends="libmowgli-devel" @@ -11,16 +11,6 @@ homepage="http://www.atheme.org/project/libguess" license="custom" distfiles="http://distfiles.atheme.org/${pkgname}-${version}.tar.gz" checksum=e3c9ad3102c9447c591131674135795fb012e073d92e887a2b05c9bbbcbe913f -long_desc=" - High-speed character set detection library. - - libguess employs discrete-finite automata to deduce the character set of the - input buffer. The advantage of this is that all character sets can be checked - in parallel, and quickly. Right now, libguess passes a byte to each DFA on the - same pass, meaning that the winning character set can be deduced as - efficiently as possible. - - libguess is fully reentrant, using only local stack memory for DFA operations." pre_configure() { sed -i 's/libmowgli >= 0.9.50/libmowgli-2/g' configure @@ -31,10 +21,11 @@ post_install() { } libguess-devel_package() { - depends="libmowgli-devel libguess>=${version}" - short_desc+=" -- development files" + depends="libmowgli-devel ${sourcepkg}>=${version}_${revision}" + short_desc+=" - development files" pkg_install() { vmove usr/include vmove usr/lib/pkgconfig + vmove "usr/lib/*.so" } }