264a15c9a8
1. New 'ch' (change archive parameters) command line mode command. Its purpose is to apply switches like -av, -tl and -cl to archive. 2. New command line -sl<size> and -sm<size> switches to set size limits of processing files. 3. 7Z added to list of formats stored without compression when using -ms switch without a parameter. 4. Switch -e[+]<attr> is now supported by most of command line operations including extracting and deleting files. Previously it was supported by only archiving command.
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.3 2006/09/16 11:29:16 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= rarlinux-3.6.0
|
|
PKGNAME= ${DISTNAME:C/linux/-bin/}
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://www.rarsoft.com/rar/ \
|
|
ftp://ftp.rarsoft.com/rar/
|
|
|
|
MAINTAINER= wiz@NetBSD.org
|
|
HOMEPAGE= http://www.rarsoft.com/rar/
|
|
COMMENT= RAR command line archiver (Linux binary)
|
|
|
|
LICENSE= rar-license
|
|
|
|
ONLY_FOR_PLATFORM= *-*-i386
|
|
WRKSRC= ${WRKDIR}/rar
|
|
|
|
# old name of the package
|
|
CONFLICTS= rarlinux-[0-9]* rar-linux-[0-9]*
|
|
|
|
.include "../../emulators/suse_linux/Makefile.application"
|
|
|
|
.if !defined(USE_NATIVE_LINUX)
|
|
DEPENDS+= suse_base>=6.1:../../emulators/${SUSE_DIR_PREFIX}_base
|
|
DEPENDS+= suse_compat>=6.1:../../emulators/${SUSE_DIR_PREFIX}_compat
|
|
.endif
|
|
|
|
NO_BUILD= YES
|
|
NO_CONFIGURE= YES
|
|
|
|
INSTALLATION_DIRS= bin lib
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rar_static ${PREFIX}/bin/rar-bin
|
|
# ${INSTALL_PROGRAM} ${WRKSRC}/unrar ${PREFIX}/bin/unrar-bin
|
|
${INSTALL_DATA} ${WRKSRC}/default.sfx ${PREFIX}/lib
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/rar-bin
|
|
${INSTALL_DATA} ${WRKSRC}/*.txt ${PREFIX}/share/doc/rar-bin
|
|
${INSTALL_DATA} ${WRKSRC}/rarfiles.lst ${PREFIX}/share/doc/rar-bin
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|