18 lines
455 B
Plaintext
18 lines
455 B
Plaintext
|
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
||
|
# Description: Minimal getty for consoles
|
||
|
# URL: http://people.redhat.com/laroche/
|
||
|
|
||
|
name=mingetty
|
||
|
version=1.07
|
||
|
release=1
|
||
|
source=(http://jaeger.morpheus.net/linux/crux/files/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
make CFLAGS="$CFLAGS -Wall -D_GNU_SOURCE"
|
||
|
mkdir -p $PKG/sbin
|
||
|
mkdir -p $PKG/usr/man/man8
|
||
|
install -m 0755 mingetty $PKG/sbin
|
||
|
install -m 0644 mingetty.8 $PKG/usr/man/man8
|
||
|
}
|