FS#62757 - Incomplete PKGBUILD intel-tbb

Attached to Project: Arch Linux
Opened by Bogdan Burlacu (bogdb) - Monday, 27 May 2019, 16:28 GMT
Last edited by Antonio Rojas (arojas) - Tuesday, 15 October 2019, 16:42 GMT
Task Type Bug Report
Category Packages: Extra
Status Closed
Assigned To Felix Yan (felixonmars)
Architecture All
Severity Low
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

Package: intel-tbb
Version: 2019.7

Description:

The intel-tbb PKGBUILD has the following problems:
- the package is built twice (once for Debug once for Release), by chance the Release version gets installed because it's built last
- the PKGBUILD fails to install cmake support files

Steps to reproduce:
- build the PKGBUILD manually with makepkg

I've attached a fixed PKGBUILD to this bug report.

Best,
Bogdan
   PKGBUILD (1.1 KiB)
This task depends upon

Closed by  Antonio Rojas (arojas)
Tuesday, 15 October 2019, 16:42 GMT
Reason for closing:  Fixed
Additional comments about closing:  intel-tbb 2019.9
Comment by Roland Singer (r0l1) - Tuesday, 15 October 2019, 15:30 GMT
Just noticed the same.

This line:
"install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib"

should be either

"install -m755 build/linux_*_release/*.so* "$pkgdir"/usr/lib"

or

"install -m755 build/linux_*_debug/*.so* "$pkgdir"/usr/lib"

Loading...