Now kiwix-build retrives docopt from a commit that has pkgconfig support.
This commit is contained in:
parent
f632ef8fcc
commit
69c33da0bc
|
@ -1,6 +1,6 @@
|
||||||
from .base import (
|
from .base import (
|
||||||
Dependency,
|
Dependency,
|
||||||
ReleaseDownload,
|
GitClone,
|
||||||
CMakeBuilder)
|
CMakeBuilder)
|
||||||
|
|
||||||
from kiwixbuild.utils import Remotefile
|
from kiwixbuild.utils import Remotefile
|
||||||
|
@ -10,10 +10,10 @@ from kiwixbuild.utils import Remotefile
|
||||||
class docoptcpp(Dependency):
|
class docoptcpp(Dependency):
|
||||||
name = 'docoptcpp'
|
name = 'docoptcpp'
|
||||||
|
|
||||||
class Source(ReleaseDownload):
|
class Source(GitClone):
|
||||||
archive = Remotefile('v0.6.2.tar.gz',
|
git_remote = "https://github.com/docopt/docopt.cpp.git"
|
||||||
'c05542245232420d735c7699098b1ea130e3a92bade473b64baf876cdf098a17',
|
git_dir = "docopt.cpp"
|
||||||
'https://github.com/docopt/docopt.cpp/archive/v0.6.2.tar.gz')
|
git_ref = "3dd23e3280f213bacefdf5fcb04857bf52e90917"
|
||||||
|
|
||||||
class Builder(CMakeBuilder):
|
class Builder(CMakeBuilder):
|
||||||
make_install_target = 'install'
|
make_install_target = 'install'
|
||||||
|
|
Loading…
Reference in New Issue