Split p7zip into p7zip and p7zip-unrar
The RAR support in p7zip is based on unrar's code and unfree.
This commit is contained in:
parent
8dfdfad548
commit
a26875c549
|
@ -0,0 +1 @@
|
||||||
|
p7zip
|
|
@ -1,13 +1,13 @@
|
||||||
# Template file for 'p7zip'
|
# Template file for 'p7zip'
|
||||||
pkgname=p7zip
|
pkgname=p7zip
|
||||||
version=15.09
|
version=15.09
|
||||||
|
revision=2
|
||||||
wrksrc=${pkgname}_${version}
|
wrksrc=${pkgname}_${version}
|
||||||
revision=1
|
|
||||||
patch_args="-Np1"
|
patch_args="-Np1"
|
||||||
hostmakedepends="yasm nasm"
|
hostmakedepends="yasm nasm"
|
||||||
short_desc="Command-line version of the 7zip compressed file archive"
|
short_desc="Command-line version of the 7zip compressed file archive"
|
||||||
homepage="http://p7zip.sourceforge.net/"
|
homepage="http://p7zip.sourceforge.net/"
|
||||||
license="LGPL-2.1, unrar"
|
license="LGPL-2.1"
|
||||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||||
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}_${version}_src_all.tar.bz2"
|
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}_${version}_src_all.tar.bz2"
|
||||||
checksum=8783acf747e210e00150f7311cc06c4cd8ecf7b0c27b4adf2194284cc49b4d6f
|
checksum=8783acf747e210e00150f7311cc06c4cd8ecf7b0c27b4adf2194284cc49b4d6f
|
||||||
|
@ -22,13 +22,30 @@ do_configure() {
|
||||||
sed -e "s,g++,${CXX}," -i makefile.machine
|
sed -e "s,g++,${CXX}," -i makefile.machine
|
||||||
sed -e "s,gcc,${CC}," -i makefile.machine
|
sed -e "s,gcc,${CC}," -i makefile.machine
|
||||||
}
|
}
|
||||||
|
|
||||||
do_build() {
|
do_build() {
|
||||||
make all3 OPTFLAGS="$CXXFLAGS" ${makejobs}
|
make all3 OPTFLAGS="$CXXFLAGS" ${makejobs}
|
||||||
}
|
}
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
make install DEST_DIR="${DESTDIR}" DEST_HOME="/usr" \
|
make install DEST_DIR="${DESTDIR}" DEST_HOME="/usr" \
|
||||||
DEST_MAN="/usr/share/man" \
|
DEST_MAN="/usr/share/man" \
|
||||||
DEST_SHARE_DOC="/usr/share/doc/${pkgname}"
|
DEST_SHARE_DOC="/usr/share/doc/${pkgname}"
|
||||||
find ${DESTDIR}/usr/share/doc/$pkgname -type d -exec chmod 755 {} \;
|
find ${DESTDIR}/usr/share/doc/$pkgname -type d -exec chmod 755 {} \;
|
||||||
vlicense DOC/License.txt
|
mkdir -p ${DESTDIR}/usr/share/licenses/p7zip/
|
||||||
|
mv ${DESTDIR}/usr/share/doc/p7zip/DOC/copying.txt \
|
||||||
|
${DESTDIR}/usr/share/licenses/p7zip/LICENSE
|
||||||
|
}
|
||||||
|
|
||||||
|
p7zip-unrar_package() {
|
||||||
|
short_desc+=" - RAR support"
|
||||||
|
license="unrar"
|
||||||
|
depends="${sourcepkg}-${version}_${revision}"
|
||||||
|
repository=nonfree
|
||||||
|
pkg_install() {
|
||||||
|
vmove usr/lib/p7zip/Codecs/Rar.so
|
||||||
|
mkdir -p ${PKGDESTDIR}/usr/share/licenses/p7zip-unrar
|
||||||
|
mv ${DESTDIR}/usr/share/doc/p7zip/DOC/License.txt \
|
||||||
|
${PKGDESTDIR}/usr/share/licenses/p7zip-unrar
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue