add app-cdr/bin2iso

for/master
Daniel Mierswa 2008-12-26 20:45:04 +01:00
parent 41c6ef6762
commit 0e27cccced
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
# Copyright 2008 Daniel Mierswa <impulze@impulze.org>
# Distributed under the terms of the GNU General Public License v2
require toolchain-funcs
SUMMARY="BIN -> ISO/WAV Converter"
DESCRIPTION="
Convert .bin files into .iso files with a .cue file or try to create .cue
files from .bin files
"
HOMEPAGE="http://users.eastlink.ca/~doiron/${PN}/"
SRC="${PN}${PV/./}_linux.c"
DOWNLOADS="${HOMEPAGE}/linux/${SRC}"
LICENCES="public-domain"
SLOT="0"
PLATFORMS="~amd64"
MYOPTIONS=""
DEPENDENCIES=""
src_compile() {
$(tc-getCC) ${CFLAGS} ${LDFLAGS} -o "${SRC}.out" "${FETCHEDDIR}/${SRC}" \
|| die "compilation failed"
}
src_install() {
newbin "${SRC}.out" "${PN}"
}