1SUMMARY="Documentation for the BeOS API"
2DESCRIPTION="The BeBook details the Application Programming Interface (API) \
3to the BeOS operating system. It's the reference for those who want to \
4familiarize themselves with the BeAPI and Haiku programming in general."
5HOMEPAGE="https://www.haiku-os.org/documents"
6COPYRIGHT="ACCESS Co., Ltd."
7LICENSE="Attribution-NonCommercial-NoDerivs 3.0 Unported"
8REVISION="7"
9SOURCE_URI="https://s3.us-west-1.wasabisys.com/haiku-inc/old_beos/bebook_20081026.zip#noarchive"
10CHECKSUM_SHA256="8bd4836744c2542567b95b3b1cacf60333562e178d5cbcf3aa0a69a02d2f7a28"
11SOURCE_DIR="bebook"
12
13ARCHITECTURES="any"
14DISABLE_SOURCE_PACKAGE="yes"
15
16PROVIDES="
17	be_book = $portVersion
18	"
19
20BUILD_PREREQUIRES="
21	cmd:unzip
22	"
23
24INSTALL()
25{
26	mkdir -p $documentationDir
27	unzip $sourceDir/bebook_20081026.zip -d $documentationDir
28	mv $documentationDir/bebook $documentationDir/BeBook
29	settype -t "text/html" $documentationDir/BeBook/*.html
30	settype -t "text/css" $documentationDir/BeBook/*.css
31}
32