1SUMMARY="Cabinet file creation tool"
2DESCRIPTION="lcab is a command-line tool for creating Microsoft Cabinet files, \
3also called CAB files or archives. lcab does not list nor extract MS CAB \
4files. This can be done with separate tools such as cabextract.
5The \".cab\" file extension is also used for another compressed archive format \
6used by InstallShield but that format is unrelated to the MS CAB format."
7HOMEPAGE="http://ohnopub.net/~ohnobinki/lcab/"
8COPYRIGHT="2003-2007 Rien"
9LICENSE="GNU GPL v2"
10REVISION="2"
11SOURCE_URI="http://mirror.ohnopub.net/mirror/lcab-$portVersion.tar.gz"
12CHECKSUM_SHA256="065f2c1793b65f28471c0f71b7cf120a7064f28d1c44b07cabf49ec0e97f1fc8"
13PATCHES="lcab-$portVersion.patch"
14
15ARCHITECTURES="all"
16
17PROVIDES="
18	lcab = $portVersion
19	cmd:lcab = $portVersion
20	"
21REQUIRES="
22	haiku
23	"
24
25BUILD_REQUIRES="
26	haiku_devel
27	"
28BUILD_PREREQUIRES="
29	cmd:autom4te
30	cmd:automake
31	cmd:gcc
32	cmd:ld
33	cmd:make
34	"
35
36BUILD()
37{
38	aclocal
39	automake -a -i
40	runConfigure --omit-dirs "docDir dataRootDir" ./configure
41	make $jobArgs
42}
43
44INSTALL()
45{
46	make install
47}
48