(buildConfig *buildsystems.BuildConfig, portFile string)
| 292 | } |
| 293 | |
| 294 | func (p Port) toPkgCacheBuildConfig(buildConfig *buildsystems.BuildConfig, portFile string) pkgcache.BuildConfig { |
| 295 | return pkgcache.BuildConfig{ |
| 296 | Patches: append([]string{}, buildConfig.Patches...), |
| 297 | Dependencies: append([]string{}, buildConfig.Dependencies...), |
| 298 | DevDependencies: append([]string{}, buildConfig.DevDependencies...), |
| 299 | BuildTools: buildConfig.CheckTools(), |
| 300 | PortFile: portFile, |
| 301 | } |
| 302 | } |
no test coverage detected