mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 14:08:51 +02:00
68 lines
1.3 KiB
Bash
68 lines
1.3 KiB
Bash
SUMMARY="Uncompress rar files"
|
|
DESCRIPTION="UnRAR decompresses rar files. It is a powerful archive manager \
|
|
that can backup your data and reduce the size of email attachments. UnRAR can \
|
|
decompress the following file formats:
|
|
- RAR
|
|
- ZIP
|
|
- CAB
|
|
- ARJ
|
|
- JZH
|
|
- TAR
|
|
- GZ and TAR.GZ
|
|
- BZ2 and TAR.BZ2
|
|
- ACE
|
|
- UUE
|
|
- JAR (Java Archive)
|
|
- ISO
|
|
- 7Z
|
|
- XZ
|
|
- Z (Unix Compress)"
|
|
HOMEPAGE="http://www.rarlab.com/rar_add.htm"
|
|
COPYRIGHT="1993-2016 Alexander Roshal"
|
|
LICENSE="UnRAR"
|
|
REVISION="2"
|
|
SOURCE_URI="http://www.rarlab.com/rar/unrarsrc-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="e470c584332422893fb52e049f2cbd99e24dc6c6da971008b4e2ae4284f8796c"
|
|
SOURCE_DIR="unrar"
|
|
PATCHES="unrar-$portVersion.patchset"
|
|
ADDITIONAL_FILES="unrar.rdef"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
unrar = $portVersion
|
|
cmd:unrar = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:cut
|
|
cmd:g++
|
|
cmd:make
|
|
cmd:sed
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
local MAJOR="`echo "$portVersion" | cut -d. -f1`"
|
|
local MIDDLE="`echo "$portVersion" | cut -d. -f2`"
|
|
local MINOR="`echo "$portVersion" | cut -d. -f3`"
|
|
sed \
|
|
-e "s|@MAJOR@|$MAJOR|" \
|
|
-e "s|@MIDDLE@|$MIDDLE|" \
|
|
-e "s|@MINOR@|$MINOR|" \
|
|
$portDir/additional-files/unrar.rdef > unrar.rdef
|
|
|
|
make DESTDIR=$prefix
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make DESTDIR=$prefix install
|
|
}
|