blob: 3a0a4fefcc0f5c62f28889babc266bda75b28869 (
plain)
1 # Description: Dos2unix converts DOS or MAC text files to UNIX format
2 # URL: http://dos2unix.sourceforge.net
3 # Maintainer: John Vogel, jvogel4 at stny dot rr dot com
4
5 name=dos2unix
6 version=7.4.0
7 release=1
8 source=(http://www.xs4all.nl/~waterlan/$name/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 make ENABLE_NLS= CFLAGS="$CFLAGS"
13 make ENABLE_NLS= DESTDIR=$PKG install-bin install-man
14 }
|