blob: f7e7d27ecb2d8ee12282b663ea8305296f585171 (
plain)
1 # Description: Show a scrolling 'Matrix' like screen in Linux.
2 # URL: http://www.asty.org/cmatrix/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: Vincenzo Colosimo vico at bicisport dot de
5 #
6 # Depends on:
7
8 name=cmatrix
9 version=1.2a
10 release=1
11 source=(http://www.asty.org/old/cmatrix/dist/cmatrix-1.2a.tar.gz)
12
13 build() {
14 cd $name-$version
15
16 ./configure \
17 --prefix=/usr \
18 --disable-nls
19
20 make
21 install -D -m755 -groot -oroot cmatrix $PKG/usr/bin/cmatrix
22 install -D -m644 -groot -oroot cmatrix.1 $PKG/usr/man/man1/cmatrix.1
23 }
|