blob: 4638867d134d4df0f6084d3ee1326020480f4b5b (
plain)
1 # Maintainer: Matt Housh, jaeger at morpheus dot net
2 # Description: Minimal getty for consoles
3 # URL: http://people.redhat.com/laroche/
4
5 name=mingetty
6 version=1.07
7 release=1
8 source=(http://jaeger.morpheus.net/linux/crux/files/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 make CFLAGS="$CFLAGS -Wall -D_GNU_SOURCE"
13 mkdir -p $PKG/sbin
14 mkdir -p $PKG/usr/man/man8
15 install -m 0755 mingetty $PKG/sbin
16 install -m 0644 mingetty.8 $PKG/usr/man/man8
17 }
|