20 lines
441 B
Bash
20 lines
441 B
Bash
# Maintainer: Jack L. Frost <fbt@fleshless.org>
|
|
|
|
pkgname="fake"
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="Fake: a more talkative true; sh version"
|
|
url="https://git.fleshless.org/u/fbt/fake"
|
|
arch=( 'any' )
|
|
license=( 'WTFPL' )
|
|
|
|
source=( "https://git.fleshless.org/u/fbt/fake/snapshot/fake-${pkgver}.tar.gz" )
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
install -Dm755 fake.sh "$pkgdir/usr/bin/fake"
|
|
}
|
|
|
|
sha1sums=('301468700ca5be8302bfa18ea7022f185323ad01')
|