mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 11:40:06 +02:00
45 lines
930 B
Bash
45 lines
930 B
Bash
SUMMARY="A program to extract Microsoft Cabinet Files"
|
|
DESCRIPTION="
|
|
cabextract is Free Software for extracting Microsoft cabinet files, also \
|
|
called .CAB files. cabextract is distributed under the GPL license. It is \
|
|
based on the portable LGPL libmspack library. cabextract supports all special \
|
|
features and all compression formats of Microsoft cabinet files."
|
|
HOMEPAGE="http://www.cabextract.org.uk"
|
|
COPYRIGHT="2000-2011 Stuart Caie"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="http://www.cabextract.org.uk/cabextract-1.4.tar.gz"
|
|
CHECKSUM_SHA256="f7ba8ba2c2d71912846eaaa2bed9200a7722ef0addeec32db7471c350a48e41e"
|
|
|
|
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
|
|
|
PROVIDES="
|
|
cabextract = $portVersion
|
|
cmd:cabextract = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:gcc
|
|
cmd:awk
|
|
cmd:sed
|
|
cmd:grep
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|