-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPKGBUILD
More file actions
42 lines (35 loc) · 976 Bytes
/
PKGBUILD
File metadata and controls
42 lines (35 loc) · 976 Bytes
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
# Maintainer: Andrea Bontempi <andreabont@yahoo.it>
pkgname=projectriddle-git
pkgver=20130224
pkgrel=1
pkgdesc="Modular Network Packet Sniffer"
arch=('i686' 'x86_64')
url="http://github.com/Andreabont/Project-Riddle"
license=('GPL')
depends=('cmake' 'boost' 'libpcap')
makedepends=('git')
_gitroot=git://github.com/Andreabont/Project-Riddle.git
_gitname=Project-Riddle
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" "$_gitname"
fi
msg "GIT checkout done or server timeout"
msg "Starting build..."
rm -rf "$srcdir/$_gitname-build"
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
cd "$srcdir/$_gitname-build"
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DSYSCONF_INSTALL_DIR=/etc
make
}
package() {
cd "$srcdir/$_gitname-build/build"
make DESTDIR="$pkgdir/" install
}