Lines 3-8
Link Here
|
3 |
|
3 |
|
4 |
EAPI=8 |
4 |
EAPI=8 |
5 |
|
5 |
|
|
|
6 |
inherit prefix |
7 |
|
6 |
DESCRIPTION="Find the system CA bundle or fall back to the Mozilla one" |
8 |
DESCRIPTION="Find the system CA bundle or fall back to the Mozilla one" |
7 |
HOMEPAGE="https://github.com/composer/ca-bundle" |
9 |
HOMEPAGE="https://github.com/composer/ca-bundle" |
8 |
SRC_URI="https://github.com/composer/ca-bundle/archive/${PV}.tar.gz -> ${P}.tar.gz" |
10 |
SRC_URI="https://github.com/composer/ca-bundle/archive/${PV}.tar.gz -> ${P}.tar.gz" |
Lines 17-22
RDEPEND="
Link Here
|
17 |
|
19 |
|
18 |
src_install() { |
20 |
src_install() { |
19 |
insinto /usr/share/php/Composer/CaBundle |
21 |
insinto /usr/share/php/Composer/CaBundle |
20 |
doins src/CaBundle.php "${FILESDIR}/autoload.php" |
22 |
doins src/CaBundle.php \ |
|
|
23 |
"$(prefixify_ro "${FILESDIR}"/autoload.php)" |
21 |
dodoc README.md |
24 |
dodoc README.md |
22 |
} |
25 |
} |
23 |
- |
|
|