PKGBUILDs/community/dgpsip/PKGBUILD

22 lines
619 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
pkgname=dgpsip
pkgver=1.35
pkgrel=3
pkgdesc="A small Un*x server and client for redistributing DGPS correction signals over the Net."
arch=('i686' 'x86_64')
url="http://www.wsrcc.com/wolfgang/gps/dgps-ip.html"
license=("GPL")
depends=('glibc')
source=(http://www.wsrcc.com/wolfgang/ftp/$pkgname-$pkgver.tar.gz)
md5sums=('e39129c4d0e1f253dd661bee6049860a')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}
# vim:syntax=sh