42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
# Copyright 2009 Daniel Mierswa <impulze@impulze.org>
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
SUMMARY="Conversion between Unix and MSDOS text files."
|
|
DESCRIPTION="A text file conversion utility that converts ASCII files between
|
|
MSDOS (or Windows) format, which traditionally have CR/LF (carriage
|
|
return/line feed) pairs as their new line delimiters, and the Unix format,
|
|
which usually have LFs (line feeds) to terminate each line."
|
|
HOMEPAGE="http://www.thefreecountry.com/${PN}/index.shtml"
|
|
DOWNLOADS="http://${PN}.sourceforge.net/download/${PNV}.tar.gz"
|
|
|
|
LICENCES="GPL-2"
|
|
SLOT="0"
|
|
PLATFORMS="~amd64"
|
|
MYOPTIONS=""
|
|
|
|
DEPENDENCIES=""
|
|
|
|
WORK="${WORKBASE}/${PN}/src"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
edo sed \
|
|
-e "/CC =/s:gcc:${CC}:" \
|
|
-e "/LD =/s:gcc:${CC}:" \
|
|
-e "/CFLAGS =/s:\$(CDEBUG):${CFLAGS}:" \
|
|
-e "/LDFLAGS =/s:\$(LDEBUG):${LDFLAGS}:" \
|
|
-i Makefile
|
|
}
|
|
|
|
src_install() {
|
|
dobin fromdos
|
|
doman fromdos.1
|
|
|
|
for link in todos dos2unix unix2dos ; do
|
|
dosym fromdos /usr/bin/${link}
|
|
dosym fromdos.1 /usr/share/man/man1/${link}.1
|
|
done
|
|
}
|
|
|