forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-cdr/cdck: bump to EAPI 6, add maintainer-needed
Package-Manager: portage-2.2.28
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="Measure the read time per sector on CD or DVD to check the quality" | ||
HOMEPAGE="http://swaj.net/unix/index.html#cdck" | ||
SRC_URI="http://swaj.net/unix/cdck/${P}.tar.gz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
src_prepare() { | ||
default | ||
|
||
sed -e '1d' -i man/cdck_man.in || die "sed failed" | ||
} | ||
|
||
src_configure() { | ||
econf --disable-dependency-tracking \ | ||
--disable-shared | ||
} | ||
|
||
src_install() { | ||
default | ||
|
||
dobin src/cdck | ||
doman man/cdck.1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters