mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-16 03:53:51 +02:00
Ice: remove long_desc.
This commit is contained in:
parent
7d2a76e50f
commit
ea4991e076
1 changed files with 7 additions and 14 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'Ice'
|
# Template file for 'Ice'
|
||||||
pkgname=Ice
|
pkgname=Ice
|
||||||
version=3.5.0
|
version=3.5.0
|
||||||
revision=2
|
revision=3
|
||||||
build_wrksrc=cpp
|
build_wrksrc=cpp
|
||||||
homepage="http://www.zeroc.com"
|
homepage="http://www.zeroc.com"
|
||||||
# XXX: other language bindings
|
# XXX: other language bindings
|
||||||
|
@ -11,15 +11,6 @@ maintainer="davehome <davehome@redthumb.info.tm>"
|
||||||
license="GPL-2, ICE"
|
license="GPL-2, ICE"
|
||||||
distfiles="${homepage}/download/Ice/3.5/${pkgname}-${version}.tar.gz"
|
distfiles="${homepage}/download/Ice/3.5/${pkgname}-${version}.tar.gz"
|
||||||
checksum=583d4a819d50ad8b79b1e9ad45abfa3078f981486271ca8cd9ede8fa420ff575
|
checksum=583d4a819d50ad8b79b1e9ad45abfa3078f981486271ca8cd9ede8fa420ff575
|
||||||
long_desc="
|
|
||||||
The Internet Communications Engine (Ice) is a modern object-oriented toolkit
|
|
||||||
that enables you to build distributed applications with minimal effort. Ice
|
|
||||||
allows you to focus your efforts on your application logic, and it takes care
|
|
||||||
of all interactions with low-level network programming interfaces. With Ice,
|
|
||||||
there is no need to worry about details such as opening network connections,
|
|
||||||
serializing and deserializing data for network transmission, or retrying
|
|
||||||
failed connection attempts (to name but a few of dozens of such low-level
|
|
||||||
details)."
|
|
||||||
|
|
||||||
do_configure() {
|
do_configure() {
|
||||||
sed -i -e "s|^#OPTIMIZE|OPTIMIZE|" config/Make.rules
|
sed -i -e "s|^#OPTIMIZE|OPTIMIZE|" config/Make.rules
|
||||||
|
@ -52,16 +43,18 @@ do_install() {
|
||||||
}
|
}
|
||||||
|
|
||||||
libIce_package() {
|
libIce_package() {
|
||||||
short_desc+=" - Runtime libraries"
|
short_desc+=" - runtime libraries"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/lib
|
vmove "usr/lib/*.so.*"
|
||||||
|
vmove usr/lib/Ice
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ice-devel_package() {
|
Ice-devel_package() {
|
||||||
depends="libIce>=$version Ice>=$version"
|
depends="libIce>=${version}_${revision} Ice>=${version}_${revision}"
|
||||||
short_desc+=" - Development files"
|
short_desc+=" - development files"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/include
|
vmove usr/include
|
||||||
|
vmove "usr/lib/*.so"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue