Convert/update cabextract to working recipe

This commit is contained in:
Chris Roberts
2013-11-24 20:55:10 -07:00
parent 0a4db91cd1
commit f3310e9a20
3 changed files with 44 additions and 42 deletions

View File

@@ -1,21 +0,0 @@
DESCRIPTION="A program to extract Microsoft Cabinet Files."
HOMEPAGE="http://www.cabextract.org.uk"
SRC_URI="http://www.cabextract.org.uk/cabextract-1.2.tar.gz"
CHECKSUM_MD5="dc421a690648b503265c82ade84e143e"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD()
{
cd cabextract-1.2
./configure --prefix=`finddir B_COMMON_DIRECTORY`
make
}
INSTALL()
{
cd cabextract-1.2
make install
}
LICENSE="GNU GPL v2"
COPYRIGHT="2000-2006 Stuart Caie"

View File

@@ -1,21 +0,0 @@
DESCRIPTION="A program to extract Microsoft Cabinet Files."
HOMEPAGE="http://www.cabextract.org.uk"
SRC_URI="http://www.cabextract.org.uk/cabextract-1.3.tar.gz"
CHECKSUM_MD5="cb9a4a38470d2a71a0275968e7eb64d3"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD()
{
cd cabextract-1.3
./configure --prefix=`finddir B_COMMON_DIRECTORY`
make
}
INSTALL()
{
cd cabextract-1.3
make install
}
LICENSE="GNU GPL v2"
COPYRIGHT="2000-2010 Stuart Caie"

View File

@@ -0,0 +1,44 @@
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"
LICENSE="GNU GPL v2"
COPYRIGHT="2000-2011 Stuart Caie"
SRC_URI="http://www.cabextract.org.uk/cabextract-1.4.tar.gz"
CHECKSUM_MD5="79f41f568cf1a3ac105e0687e8bfb7c0"
REVISION="1"
ARCHITECTURES="x86 ?x86_gcc2 ?x86_64"
PROVIDES="
cabextract = $portVersion
cmd:cabextract = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
"
BUILD_PREREQUIRES="
cmd:make
cmd:gcc
"
BUILD()
{
runConfigure ./configure
make
}
INSTALL()
{
make install
}