Skip to content

Commit

Permalink
improve sanity checks
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroge committed Jun 25, 2024
1 parent 2f87100 commit 3e65cdf
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,14 @@ preconfigopts = 'PKG_CONFIG=$EBROOTPKGCONF/bin/pkgconf'
configopts = "--with-gslib --with-x"

sanity_check_paths = {
'files': [],
'dirs': ['bin', 'etc/%(name)s-%(version_major)s',
'include/%(name)s-%(version_major)s', 'lib', 'share'],
'files': ['bin/magick'],
'dirs': ['etc/%(name)s-%(version_major)s', 'include/%(name)s-%(version_major)s', 'lib', 'share'],
}

sanity_check_commands = [
'magick --help',
]

modextravars = {'MAGICK_HOME': '%(installdir)s'}

moduleclass = 'vis'
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,14 @@ preconfigopts = 'PKG_CONFIG=$EBROOTPKGCONF/bin/pkgconf'
configopts = "--with-gslib --with-x"

sanity_check_paths = {
'files': [],
'dirs': ['bin', 'etc/%(name)s-%(version_major)s',
'include/%(name)s-%(version_major)s', 'lib', 'share'],
'files': ['bin/magick'],
'dirs': ['etc/%(name)s-%(version_major)s', 'include/%(name)s-%(version_major)s', 'lib', 'share'],
}

sanity_check_commands = [
'magick --help',
]

modextravars = {'MAGICK_HOME': '%(installdir)s'}

moduleclass = 'vis'
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,14 @@ preconfigopts = 'PKG_CONFIG=$EBROOTPKGCONF/bin/pkgconf'
configopts = "--with-gslib --with-x"

sanity_check_paths = {
'files': [],
'dirs': ['bin', 'etc/%(name)s-%(version_major)s',
'include/%(name)s-%(version_major)s', 'lib', 'share'],
'files': ['bin/magick'],
'dirs': ['etc/%(name)s-%(version_major)s', 'include/%(name)s-%(version_major)s', 'lib', 'share'],
}

sanity_check_commands = [
'magick --help',
]

modextravars = {'MAGICK_HOME': '%(installdir)s'}

moduleclass = 'vis'
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,14 @@ preconfigopts = 'PKG_CONFIG=$EBROOTPKGCONF/bin/pkgconf'
configopts = "--with-gslib --with-x"

sanity_check_paths = {
'files': [],
'dirs': ['bin', 'etc/%(name)s-%(version_major)s', 'include/%(name)s-%(version_major)s', 'lib', 'share'],
'files': ['bin/magick'],
'dirs': ['etc/%(name)s-%(version_major)s', 'include/%(name)s-%(version_major)s', 'lib', 'share'],
}

sanity_check_commands = [
'magick --help',
]

modextravars = {'MAGICK_HOME': '%(installdir)s'}

moduleclass = 'vis'

0 comments on commit 3e65cdf

Please sign in to comment.