blob: 88590d9844ae3b2231df8fa1f03b829f636e2814 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Contributor: Bob Finch <w9ya@qrpqrci.net>
pkgname=altos-git
pkgver=20100507
pkgrel=1
pkgdesc="Software solutions for high powered rocketry avionics"
arch=('i686' 'x86_64')
url="http://www.altusmetrum.org/AltOS/"
license=('GPL')
depends=('openssl>=1.0.0' 'libusb-BETA' 'plplot-svn' 'sdcc' 'nickle' 'flite' 'kernel26>=2.6.33')
makedepends=('git')
optdepends=('uucp: cu is included and is a bare boned terminal to serial program'
'cutemon: gui-based minimal terminal to serial program'
'google-earth: useful for viewing the kml files of the flight path'
'docbook-xsl: for making an html doc file from the xsl source'
'fop: for making a pdf doc file from the xsl source')
_gitroot="git://git.gag.com/fw/altos"
_gitname="altos"
build() {
cd "$srcdir"
# msg "Connecting to GIT server...."
if [ -d $_gitname ] ; then
cd $_gitname && git pull origin
# msg "The local files are updated."
else
git clone $_gitroot
fi
# msg "GIT checkout done or server timeout"
# msg "Starting make..."
rm -rf "$srcdir/$_gitname-build"
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
cd "$srcdir/$_gitname-build"
#
# BUILD HERE
#
./autogen.sh
./configure --prefix=/usr
make || return 1
make DESTDIR="$pkgdir/" install
mkdir -p $startdir/pkg/usr/share/pixmaps
mkdir -p $startdir/pkg/usr/share/applications
install -m644 debian/*.xpm $startdir/pkg/usr/share/pixmaps
install -m644 debian/*.desktop $startdir/pkg/usr/share/applications
#
# OPTIONAL DOC BUILD - *** UNCOMMENT TO INSTALL DOCUMENTATION
#
# xsltproc -o telemetrum.html /usr/share/xml/docbook/xsl-stylesheets-1.74.0/html/docbook.xsl\
# doc/telemetrum.xml
# xsltproc -o telemetrum.fo /usr/share/xml/docbook/xsl-stylesheets-1.74.0/fo/docbook.xsl\
# doc/telemetrum.xml
# fop -fo telemetrum.fo -pdf telemetrum.pd
#
# mkdir -p $startdir/pkg/usr/share/altos/doc
# install -m 644 *.html $startdir/pkg/usr/share/altos/doc/
# install -m 644 *.pdf $startdir/pkg/usr/share/altos/doc/
}
|