23 lines
552 B
Plaintext
23 lines
552 B
Plaintext
|
# Description: Show a scrolling 'Matrix' like screen in Linux.
|
||
|
# URL: http://www.asty.org/cmatrix/
|
||
|
# Maintainer: James Mills prologic at shortcircuit dot net dot au
|
||
|
# Packager: Vincenzo Colosimo <vico@bicisport.de>
|
||
|
# Depends on:
|
||
|
|
||
|
name=cmatrix
|
||
|
version=1.2a
|
||
|
release=1
|
||
|
source=(http://www.asty.org/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
|
||
|
}
|