34 lines
725 B
Smalltalk
34 lines
725 B
Smalltalk
"
|
|
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"
|
|
spec
|
|
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ];
|
|
baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository'].
|
|
|
|
|
|
"Packages"
|
|
spec package: 'Fossil' with: [ spec requires: #('NeoJSON' 'OSSubprocess') ].
|
|
|
|
|
|
]
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
BaselineOfFossil >> projectClass [
|
|
^ MetacelloCypressBaselineProject
|
|
]
|