mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
619 B
Bash
21 lines
619 B
Bash
# $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
|