mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* allegro Don't start SUMMARY with app name. Re-ordered blocks * bzip2 Don't start SUMMARY with app name. Re-ordered blocks * caya Don't start SUMMARY with app name. Re-ordered blocks * clucene Don't start SUMMARY with app name. Re-ordered blocks * cyassl Don't start SUMMARY with app name. Re-ordered blocks * digiclock Don't start SUMMARY with app name. Re-ordered blocks * dockbert Don't start SUMMARY with app name. Re-ordered blocks * docutils Don't start SUMMARY with app name. Re-ordered blocks * dos2unix Don't start SUMMARY with app name. Re-ordered blocks * ducksaver Don't start SUMMARY with app name. Re-ordered blocks * erlang Don't start SUMMARY with app name. Re-ordered blocks * fdupes Don't start SUMMARY with app name. Re-ordered blocks * figlet (old BEP style) Don't start SUMMARY with app name. Re-ordered blocks * flac Don't start SUMMARY with app name. Re-ordered blocks * gdal Don't start SUMMARY with app name. Re-ordered blocks * gemrb Don't start SUMMARY with app name. Re-ordered blocks * giflib Don't start SUMMARY with app name. Re-ordered blocks * glib Don't start SUMMARY with app name. Re-ordered blocks * globe Don't start SUMMARY with app name. Re-ordered blocks * gmp Don't start SUMMARY with app name. Re-ordered blocks
48 lines
1.1 KiB
Bash
48 lines
1.1 KiB
Bash
<<<<<<< HEAD
|
|
SUMMARY="dos2unix and unix2dos end of line file convertors"
|
|
DESCRIPTION="
|
|
DOS/Windows like to put CR/LF at the end of lines whereas UNIX like to have \
|
|
just LF. Dos2unix and unix2dos are simple parser/converter command line \
|
|
programs to convert between the two formats.
|
|
"
|
|
=======
|
|
SUMMARY="Convertor between DOS and Unix end-of-line"
|
|
DESCRIPTION="DOS/Windows like to put CR/LF at the end of lines whereas UNIX like \
|
|
to have just LF. Dos2unix and unix2dos are simple parser/converter command line \
|
|
programs to convert between the two formats."
|
|
>>>>>>> De-lint recipes.
|
|
HOMEPAGE="http://github.com/puckipedia/dos2unix"
|
|
COPYRIGHT="Public Domain"
|
|
LICENSE="Public Domain"
|
|
REVISION="1"
|
|
SOURCE_URI="git://github.com/puckipedia/dos2unix.git#553720356be18ca60cae3d970a575520aef5a4f4"
|
|
|
|
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
|
|
|
PROVIDES="
|
|
dos2unix = 1.0.1 compat >= 1
|
|
cmd:dos2unix
|
|
cmd:unix2dos
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:g++
|
|
"
|
|
BUILD()
|
|
{
|
|
cd src
|
|
g++ -O -o ../dos2unix dos2unix.c
|
|
g++ -O -o ../unix2dos unix2dos.c
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir
|
|
cp dos2unix $binDir/dos2unix
|
|
cp unix2dos $binDir/unix2dos
|
|
}
|