void-packages/srcpkgs/orc/template

44 lines
1.1 KiB
Text
Raw Normal View History

2010-11-20 00:31:20 +00:00
# Template build file for 'orc'.
pkgname=orc
2013-09-26 10:44:08 +00:00
version=0.4.18
2013-06-06 14:36:08 +00:00
revision=1
build_style=gnu-configure
2012-09-25 09:45:27 +00:00
configure_args="--disable-static"
2013-09-26 10:44:08 +00:00
hostmakedepends="pkg-config libtool"
2010-11-20 00:31:20 +00:00
short_desc="The Oild Runtime Compiler"
maintainer="Juan RP <xtraeme@gmail.com>"
2012-09-25 09:45:27 +00:00
homepage="http://code.entropywave.com/orc/"
license="Simplified BSD, New BSD license"
distfiles="http://code.entropywave.com/download/orc/orc-${version}.tar.gz"
2013-09-26 10:44:08 +00:00
checksum=34d3c8a7259f42bed4dcfbc106c5e3d0cc8e17eeaa73128d1c5eaf92883a6a24
2010-11-20 00:31:20 +00:00
long_desc="
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
language that represents many of the features available in SIMD architectures,
including saturated addition and subtraction, and many arithmetic operations."
2013-09-26 10:44:08 +00:00
pre_configure() {
libtoolize -f
}
2013-05-15 07:20:06 +00:00
2012-09-25 09:45:27 +00:00
post_install() {
vinstall COPYING 644 usr/share/licenses/orc
}
orc-devel_package() {
depends="orc>=${version}"
2013-05-15 07:20:06 +00:00
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
2013-09-26 10:44:08 +00:00
vmove "usr/lib/*.so"
vmove usr/share/gtk-doc
}
}
orc_package() {
pkg_install() {
2013-09-26 10:44:08 +00:00
vmove all
}
}