21 lines
778 B
Bash
21 lines
778 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=asciiquarium
|
|
pkgver=1.1
|
|
pkgrel=2
|
|
pkgdesc="An aquarium / sea animation in ASCII art"
|
|
arch=('any')
|
|
license=('GPL-2')
|
|
depends=('perl' 'perl-term-animation')
|
|
source=("https://repo.hyperbola.info:50000/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
|
|
sha512sums=('109da0aaba272465aa2cf5ce010e9ca1ece3be5be996dfe12709b3c10e44572492196b1852e8c103ed89d2c6efd0b05e454a718267cbcc4924806d30a072d926'
|
|
'SKIP')
|
|
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
|
|
|
|
package() {
|
|
cd ${pkgname}_${pkgver}
|
|
install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
|
|
install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
|
|
install -Dm644 gpl.txt -t "${pkgdir}/usr/share/licenses/$pkgname"
|
|
}
|