ae69000001
* arduino and antiword is kept at -Np0 ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
52 lines
1.6 KiB
Bash
52 lines
1.6 KiB
Bash
# Template file for 'assimp'
|
|
pkgname=assimp
|
|
version=5.0.1
|
|
revision=2
|
|
build_style=cmake
|
|
configure_args="-DASSIMP_BUILD_SAMPLES=OFF"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="boost-devel libgomp-devel devil-devel minizip-devel zziplib-devel"
|
|
depends="libassimp>=${version}_${revision}"
|
|
short_desc="Import library for various well-known 3D model formats"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="http://assimp.sourceforge.net/"
|
|
distfiles="https://github.com/assimp/assimp/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz"
|
|
checksum=11310ec1f2ad2cd46b95ba88faca8f7aaa1efe9aa12605c55e3de2b977b3dbfc
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
# Copy contrib/stb_image header file (required for assimp_qt_viewer)
|
|
vmkdir usr/include/assimp/contrib/stb_image
|
|
vcopy contrib/stb_image/stb_image.h usr/include/assimp/contrib/stb_image
|
|
|
|
# Create command documentation
|
|
cd doc
|
|
vmkdir usr/share/doc/${pkgname}
|
|
vcopy AssimpCmdDoc_Html/* usr/share/doc/${pkgname}
|
|
|
|
# Create library documentation
|
|
vmkdir usr/share/doc/${pkgname}/lib
|
|
vcopy AssimpDoc_Html/* usr/share/doc/${pkgname}/lib
|
|
}
|
|
|
|
libassimp_package() {
|
|
short_desc+=" - libraries"
|
|
pkg_install() {
|
|
vmove usr/lib/*.so.*
|
|
vlicense LICENSE
|
|
}
|
|
}
|
|
libassimp-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="libassimp>=${version}_${revision} ${makedepends}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/cmake
|
|
vmove usr/lib/pkgconfig
|
|
vmkdir usr/share/doc/libassimp
|
|
mv ${DESTDIR}/usr/share/doc/${sourcepkg}/lib/* \
|
|
${PKGDESTDIR}/usr/share/doc/libassimp/
|
|
}
|
|
}
|