-
Notifications
You must be signed in to change notification settings - Fork 1
/
pearfarm.spec
22 lines (21 loc) · 1.19 KB
/
pearfarm.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$spec = Pearfarm_PackageSpec::create(array(Pearfarm_PackageSpec::OPT_BASEDIR => dirname(__FILE__)))
->setName('elibriWatermarkingPHP')
->setChannel('elibri.com.pl/system/pear')
->setSummary('Client for elibri watermarking and transactional system')
->setDescription('Client for elibri watermarking and transactional system')
->setReleaseVersion('0.2.6')
->setReleaseStability('beta')
->setApiVersion('1.0.0')
->setApiStability('beta')
->setLicense(Pearfarm_PackageSpec::LICENSE_MIT)
->setNotes('akceptuj kod 202 w odpowiedzi jako prawidłowy')
->addMaintainer('lead', 'Tomasz Meka', '', '[email protected]')
->addFilesRegex("/elibriWatermarkingPHP\/.*php$/", $role= "php")
->addFilesRegex("/tests\//", $role= "test")
->addFilesRegex("/examples\/.*php$/", $role= "php")
->addFilesSimple("elibriWatermarkingPHP.php", $role= "php", array('baseinstalldir' => "/"))
->addFilesRegex("/html\//", $role= "doc")
//->addGitFiles()
//->addExecutable('elibriWatermarkingPHP')
;