mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 08:21:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			905 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			905 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Contributor: alpterry <alpterry@protonmail.com>
 | |
| # Maintainer: alpterry <alpterry@protonmail.com>
 | |
| pkgname=cmatrix
 | |
| pkgver=2.0
 | |
| pkgrel=1
 | |
| pkgdesc="Terminal based 'The Matrix' like implementation"
 | |
| url="https://github.com/abishekvashok/cmatrix"
 | |
| arch="all"
 | |
| license="GPL-3.0-or-later"
 | |
| makedepends="ncurses-dev kbd autoconf automake"
 | |
| subpackages="$pkgname-doc"
 | |
| options="!check" # no test suite
 | |
| source="$pkgname-$pkgver.tar.gz::https://github.com/abishekvashok/cmatrix/archive/v$pkgver.tar.gz"
 | |
| 
 | |
| prepare() {
 | |
| 	default_prepare
 | |
| 	autoreconf -i
 | |
| }
 | |
| 
 | |
| build() {
 | |
| 	./configure \
 | |
| 		--build=$CBUILD \
 | |
| 		--host=$CHOST \
 | |
| 		--prefix=/usr \
 | |
| 		--sysconfdir=/etc \
 | |
| 		--mandir=/usr/share/man \
 | |
| 		--localstatedir=/var
 | |
| 	make
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	make DESTDIR="$pkgdir" install
 | |
| }
 | |
| 
 | |
| sha512sums="1aeecd8e8abb6f87fc54f88a8c25478f69d42d450af782e73c0fca7f051669a415c0505ca61c904f960b46bbddf98cfb3dd1f9b18917b0b39e95d8c899889530  cmatrix-2.0.tar.gz"
 |