24 lines
580 B
Plaintext
24 lines
580 B
Plaintext
# Description: Show a scrolling 'Matrix' like screen in Linux.
|
|
# URL: http://www.asty.org/cmatrix/
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Packager: Vincenzo Colosimo vico at bicisport dot de
|
|
#
|
|
# Depends on:
|
|
|
|
name=cmatrix
|
|
version=1.2a
|
|
release=1
|
|
source=(http://www.asty.org/old/cmatrix/dist/cmatrix-1.2a.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls
|
|
|
|
make
|
|
install -D -m755 -groot -oroot cmatrix $PKG/usr/bin/cmatrix
|
|
install -D -m644 -groot -oroot cmatrix.1 $PKG/usr/man/man1/cmatrix.1
|
|
}
|