1SUMMARY="Tracker add-on to take snapshots of files or folders"
2DESCRIPTION="This Tracker add-on lets you take snapshots of a folder, saving it \
3as zip file, with a timestamp, to a preset folder. Snapshots are \
4currently saved to /boot/home/Snapshots"
5HOMEPAGE="https://github.com/HaikuArchives/SnapShot"
6COPYRIGHT="2000 Jonas Sundstr��m"
7LICENSE="BSD (3-clause)"
8REVISION="2"
9SOURCE_URI="https://github.com/HaikuArchives/Snapshot/archive/9ba592336a0d54707b7e5983dce93f8958b61d37.tar.gz"
10CHECKSUM_SHA256="27c3693fe96b81be306efac1a3cd41dd4122796c73fb84e56f9c006b280af876"
11SOURCE_DIR="Snapshot-9ba592336a0d54707b7e5983dce93f8958b61d37"
12
13ARCHITECTURES="x86_gcc2"
14
15USER_SETTINGS_FILES="settings/Kirilla/Snapshot/settings"
16
17PROVIDES="
18	snapshot = $portVersion
19	addon:snapshot = $portVersion
20	"
21REQUIRES="
22	haiku
23	"
24
25BUILD_REQUIRES="
26	haiku_devel
27	"
28BUILD_PREREQUIRES="
29	makefile_engine
30	cmd:gcc
31	"
32
33BUILD()
34{
35	cd Source
36	make $jobArgs OBJ_DIR=objects
37}
38
39INSTALL()
40{
41	mkdir -p $addOnsDir/Tracker
42	cp -a Source/objects/Snapshot $addOnsDir/Tracker
43}
44