orc: update to 0.4.18.

This commit is contained in:
Juan RP 2013-09-26 12:44:08 +02:00
parent 3064488d60
commit 8a771bf21d

View file

@ -1,29 +1,25 @@
# Template build file for 'orc'. # Template build file for 'orc'.
pkgname=orc pkgname=orc
version=0.4.17 version=0.4.18
revision=1 revision=1
build_style=gnu-configure build_style=gnu-configure
configure_args="--disable-static" configure_args="--disable-static"
hostmakedepends="pkg-config" hostmakedepends="pkg-config libtool"
short_desc="The Oild Runtime Compiler" short_desc="The Oild Runtime Compiler"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://code.entropywave.com/orc/" homepage="http://code.entropywave.com/orc/"
license="Simplified BSD, New BSD license" license="Simplified BSD, New BSD license"
distfiles="http://code.entropywave.com/download/orc/orc-${version}.tar.gz" distfiles="http://code.entropywave.com/download/orc/orc-${version}.tar.gz"
checksum=4fc7cca48c59fff23afee78fb642cdbde001f56401c8f47b95a16578d1d5d7e8 checksum=34d3c8a7259f42bed4dcfbc106c5e3d0cc8e17eeaa73128d1c5eaf92883a6a24
long_desc=" long_desc="
Orc is a library and set of tools for compiling and executing very simple Orc is a library and set of tools for compiling and executing very simple
programs that operate on arrays of data. The “language” is a generic assembly programs that operate on arrays of data. The “language” is a generic assembly
language that represents many of the features available in SIMD architectures, language that represents many of the features available in SIMD architectures,
including saturated addition and subtraction, and many arithmetic operations." including saturated addition and subtraction, and many arithmetic operations."
if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" automake libtool"
pre_configure() { pre_configure() {
sed -e 's,AM_CONFIG_HEADER,AC_CONFIG_HEADERS,g' -i configure.ac libtoolize -f
autoreconf -fi
} }
fi
post_install() { post_install() {
vinstall COPYING 644 usr/share/licenses/orc vinstall COPYING 644 usr/share/licenses/orc
@ -35,12 +31,13 @@ orc-devel_package() {
pkg_install() { pkg_install() {
vmove usr/include vmove usr/include
vmove usr/lib/pkgconfig vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
vmove usr/share/gtk-doc vmove usr/share/gtk-doc
} }
} }
orc_package() { orc_package() {
pkg_install() { pkg_install() {
vmove usr vmove all
} }
} }