1234567891011121314151617181920212223242526272829303132333435 |
- # Template file for 'p7zip'
- pkgname=p7zip
- version=16.02
- revision=5
- wrksrc="${pkgname}_${version}"
- hostmakedepends="yasm nasm"
- short_desc="Command-line version of the 7zip compressed file archive"
- maintainer="Orphaned <orphan@voidlinux.org>"
- license="LGPL-2.1-or-later"
- homepage="http://p7zip.sourceforge.net/"
- distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}_${version}_src_all.tar.bz2"
- checksum=5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f
- do_configure() {
- case "$XBPS_TARGET_MACHINE" in
- i686*) cp makefile.linux_x86_asm_gcc_4.X makefile.machine;;
- x86_64*) cp makefile.linux_amd64_asm makefile.machine;;
- *) cp makefile.linux_any_cpu_gcc_4.X makefile.machine;;
- esac
- sed -e "s,g++,${CXX}," -i makefile.machine
- sed -e "s,gcc,${CC}," -i makefile.machine
- }
- do_build() {
- make all3 OPTFLAGS="$CXXFLAGS" ${makejobs}
- }
- do_install() {
- make install DEST_DIR="${DESTDIR}" DEST_HOME="/usr" \
- DEST_MAN="/usr/share/man" \
- DEST_SHARE_DOC="/usr/share/doc/${pkgname}"
- find ${DESTDIR}/usr/share/doc/$pkgname -type d -exec chmod 755 {} \;
- mkdir -p ${DESTDIR}/usr/share/licenses/p7zip/
- mv ${DESTDIR}/usr/share/doc/p7zip/DOC/copying.txt \
- ${DESTDIR}/usr/share/licenses/p7zip/LICENSE
- }
|