exherbo-impulze/packages/app-cdr/bin2iso/bin2iso-1.9b.exheres-0

34 lines
673 B
Bash
Raw Normal View History

2008-12-26 20:45:04 +01:00
# Copyright 2008 Daniel Mierswa <impulze@impulze.org>
# Distributed under the terms of the GNU General Public License v2
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"
2011-08-19 21:56:15 +02:00
PLATFORMS="~amd64 ~x86"
2008-12-26 20:45:04 +01:00
MYOPTIONS=""
DEPENDENCIES=""
2009-02-25 07:42:25 +01:00
WORK="${WORKBASE}"
src_unpack() {
:
}
2008-12-26 20:45:04 +01:00
src_compile() {
2010-03-11 11:37:00 +01:00
edo "${CC}" ${CFLAGS} ${LDFLAGS} -o "${SRC}.out" "${FETCHEDDIR}/${SRC}"
2008-12-26 20:45:04 +01:00
}
src_install() {
newbin "${SRC}.out" "${PN}"
}
2009-07-29 12:55:27 +02:00