mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
app-crypt/pkcrack: add missing dies
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
parent
89a8a03507
commit
97a9222f13
@ -2,6 +2,7 @@
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="PkZip cipher breaker"
|
||||
@ -34,18 +35,18 @@ PATCHES=(
|
||||
)
|
||||
|
||||
src_compile() {
|
||||
cd src
|
||||
cd src || die
|
||||
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" all
|
||||
}
|
||||
|
||||
src_test() {
|
||||
cd test
|
||||
cd test || die
|
||||
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" all
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
cd src
|
||||
cd src || die
|
||||
dobin pkcrack zipdecrypt findkey makekey
|
||||
newbin extract "${PN}-extract"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user