forked from sumitk/librokudev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
58 lines (47 loc) · 1.79 KB
/
README
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
INTRODUCTION
------------
This is libRokuDev, a community-created library of useful Roku BrightScript
functions and classes. libRokuDev handles a lot of the busy work so that you
can get on with the more interesting work of building your channel.
INSTALLATION
------------
Installing libRokuDev into your project is simple:
1. Copy the rokudev_files/ directory from the libRokuDev repository
(in source/librokudev/ ) into your project at the same level as your
usual images/ and source/ directories.
2. Copy the rokudev_src/ directory from the libRokuDev repository
(in source/librokudev/source/ ) into your project inside the source/
directory that contains your BrightScript .brs files.
Thus, your application's final structure should look like this:
.
|-- packages
|-- zips
`-- source
`-- YOUR_APP
|-- rokudev_files
| `-- ...
`-- source
|-- YOUR.brs
|-- BRIGHTSCRIPT.brs
|-- FILES.brs
|-- ...
`-- rokudev_src
|-- rdBitwise.brs
|-- rdByteArray.brs
|-- rdCRC.brs
|-- rdDebug.brs
|-- rdFunctional.brs
|-- rdTempFile.brs
`-- ...
LICENSE
-------
The app.mk file is copied from the Roku SDK examples and is Copyright 2010,
Roku Inc.
All other files are Copyright 2010, GandK Labs. This library is free software;
see the LICENSE file for more details.
NOTES
-----
* rdPNG.brs will undergo a significant interface change shortly.
* rdShape.brs will be genericized to a general purpose color indexed PNG
library, and its name and interface may change at that time.
* See the TODO file for more info on upcoming changes and additions.