mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
744 B
Bash
23 lines
744 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=floyd
|
|
pkgver=2.0.1
|
|
pkgrel=2
|
|
pkgdesc="displays system load with pulse of keyboard LED"
|
|
arch=(i686 x86_64)
|
|
url="http://www.asahi-net.or.jp/~pi9s-nnb/floyd/"
|
|
license=("GPL")
|
|
depends=(glibc)
|
|
backup=(etc/fuse.conf)
|
|
source=(http://www.asahi-net.or.jp/~pi9s-nnb/floyd/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('c1b80bc76ac4e25e821a193428fa42a4')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
sed -i "s#/usr/local#/usr#" ./Makefile
|
|
make floyd || return 1
|
|
install -D -m 0755 ./floyd $startdir/pkg/usr/bin/floyd && \
|
|
install -D -m 0644 ./floyd.1 $startdir/pkg/usr/man/man1/floyd.1
|
|
}
|