blob: cf3653b3446e3a71e1be9a8c0f85e559ecdebb15 (
plain)
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
|
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
# You need to create a login at <http://firstforge.wpi.edu/sf> and set
# "$_svnuser" and "$_svnpass". The account creation is free and automatic.
pkgname=wpilibj-networktable-client
pkgver=197
pkgrel=1
pkgdesc="WPI NetworkTable Client library"
arch=('any')
groups=(frc)
url="http://firstforge.wpi.edu/sf/projects/smartdashboard"
license=unknown
makedepends=('subversion' 'findutils')
options=('!strip' 'docs' '!zipman' 'emptydirs')
_svntrunk=http://firstforge.wpi.edu/svn/repos/smart_dashboard/tags/2012/NetworkTable/Client/Java/trunk
_svnver=197
_svnuser=YOURUSERNAME
_svnpass=YOURPASSWORD
build() {
cd "$srcdir"
msg "Connecting to SVN server..."
if [[ -d "$pkgname/.svn" ]]; then
cd "$pkgname" && svn up -r "$_svnver"
else
svn co \
--username "$_svnuser" \
--password "$_svnpass" \
--config-dir ./ \
"$_svntrunk" -r "$_svnver" "$pkgname"
fi
msg "SVN checkout done or server timeout"
msg "Removing .svn files..."
find . -name .svn -print0 | xargs -0 rm -rf
}
package() {
PKGEXT=${SRCEXT}
PKGDEST=${SRCDEST}
cp -a "${srcdir}/${pkgname}" "${pkgdir}/"
}
|