Fossil/repository/BaselineOfFossil/BaselineOfFossil.class.st

34 lines
725 B
Smalltalk
Raw Normal View History

"
I define the installation procedure for Fossil package support.
"
Class {
#name : #BaselineOfFossil,
#superclass : #BaselineOf,
#category : #BaselineOfFossil
}
{ #category : #baselines }
BaselineOfFossil >> baseline: spec [
<baseline>
spec
for: #common
do: [
"Dependencies"
2020-01-16 19:55:39 +00:00
spec
2020-07-26 16:57:42 +00:00
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ];
baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository'].
2020-01-16 19:55:39 +00:00
"Packages"
2020-07-26 16:57:42 +00:00
spec package: 'Fossil' with: [ spec requires: #('NeoJSON' 'OSSubprocess') ].
]
]
{ #category : #accessing }
BaselineOfFossil >> projectClass [
^ MetacelloCypressBaselineProject
]