2006-11-20 07:26:53 +10:00
|
|
|
# Description: Show a scrolling 'Matrix' like screen in Linux.
|
|
|
|
# URL: http://www.asty.org/cmatrix/
|
2008-03-06 00:28:17 +01:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2008-05-16 19:48:04 +02:00
|
|
|
# Packager: Vincenzo Colosimo vico at bicisport dot de
|
2006-11-20 07:26:53 +10:00
|
|
|
#
|
|
|
|
# Depends on:
|
2006-11-14 09:01:22 +10:00
|
|
|
|
|
|
|
name=cmatrix
|
|
|
|
version=1.2a
|
|
|
|
release=1
|
2014-07-26 18:41:11 +02:00
|
|
|
source=(http://www.asty.org/cmatrix/dist/cmatrix-$version.tar.gz)
|
2006-11-14 09:01:22 +10:00
|
|
|
|
|
|
|
build() {
|
2006-11-20 07:26:53 +10:00
|
|
|
cd $name-$version
|
2006-11-14 09:01:22 +10:00
|
|
|
|
2006-11-20 07:26:53 +10:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-nls
|
2006-11-14 09:01:22 +10:00
|
|
|
|
2006-11-20 07:26:53 +10:00
|
|
|
make
|
|
|
|
install -D -m755 -groot -oroot cmatrix $PKG/usr/bin/cmatrix
|
|
|
|
install -D -m644 -groot -oroot cmatrix.1 $PKG/usr/man/man1/cmatrix.1
|
2006-11-14 09:01:22 +10:00
|
|
|
}
|