19 lines
546 B
Bash
19 lines
546 B
Bash
# Maintainer: mab122 maciek+ceskadraha@mbator.pl
|
|
pkgname=cd-ceskadraha
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="A fun terminal animation of a Czech Railways motorak - Czech version of sl"
|
|
arch=('any')
|
|
url="https://github.com/mab122/ceskadraha"
|
|
license=('MIT')
|
|
depends=('bash' 'ncurses')
|
|
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
|
|
sha256sums=('SKIP') # Update this after creating the first release
|
|
|
|
package() {
|
|
cd "${srcdir}/ceskadraha-${pkgver}"
|
|
|
|
# Install the script
|
|
install -Dm755 čd "${pkgdir}/usr/bin/čd"
|
|
}
|