mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
18 lines
509 B
Bash
18 lines
509 B
Bash
# Contributor: Brad Conte <brad@bradconte.com>
|
|
|
|
pkgname=stopwatch
|
|
pkgver=3.5
|
|
pkgrel=2
|
|
pkgdesc="Virtual Stopwatch."
|
|
arch=(i686 x86_64)
|
|
license=("Public Domain")
|
|
url="http://expect.nist.gov/stopwatch/"
|
|
depends=("tk")
|
|
source="http://expect.nist.gov/stopwatch/stopwatch.tar.gz"
|
|
md5sums=("4feb97cd7f108c89f17fcb18e55deaf9")
|
|
|
|
build() {
|
|
mkdir -p $startdir/pkg/usr/bin
|
|
cp $startdir/src/$pkgname-3.4/stopwatch $startdir/pkg/usr/bin
|
|
sed -e "s_/depot/path/wish_/usr/bin/wish_" -i $startdir/pkg/usr/bin/stopwatch
|
|
}
|