CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
lua: updated to 5.1.4
[attic/ports/opt-cross.git] / gpsd / Pkgfile
CommitLineData
6bbad484
JB
1# Description: gpsd is a service daemon that monitors one or more GPSes
2# URL: http://gpsd.berlios.de/
38b50d66 3# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6bbad484
JB
4# Depends on:
5
6name=gpsd
7version=2.90
8release=1
9source=(http://download.berlios.de/$name/$name-$version.tar.gz)
10
11build () {
12 cd $name-$version
13
14 ./configure --build=$CHOST \
15 --host=$CTARGET \
16 --prefix=/usr \
17 --mandir=$PKG/usr/man
18
19 make
20 make prefix=$PKG/usr install
21
22 install -m 0644 *.1 $PKG/usr/man/man1
23 install -m 0644 *.3 $PKG/usr/man/man3
24 install -m 0644 *.5 $PKG/usr/man/man5
25 install -m 0644 *.8 $PKG/usr/man/man8
26}