mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
654 B
Bash
22 lines
654 B
Bash
# Maintainer: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>
|
|
|
|
pkgname=cowsay
|
|
pkgver=3.03
|
|
pkgrel=6
|
|
pkgdesc="Add speaking and thinking cows (and a few other creatures) to anything"
|
|
arch=('arm')
|
|
url="http://www.nog.net/~tony/warez/cowsay.shtml"
|
|
license=('PerlArtistic' 'GPL')
|
|
depends=('perl')
|
|
source=(http://www.nog.net/~tony/warez/${pkgname}-${pkgver}.tar.gz
|
|
cowsay.patch)
|
|
md5sums=('b29169797359420dadb998079021a494'
|
|
'7091f9a6d97006299a1f27a665b638b6')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
patch -p1 < ../cowsay.patch
|
|
sed -i 's|/man/|/share/man/|' install.sh
|
|
echo "${pkgdir}/usr" | ./install.sh
|
|
}
|