# $Id$ # Contributor: Thayer Williams # Contributor: Hugo Doria # Contributor: TuxSpirit 2007/11/17 21:22:36 UTC # Contributor: Daniel J Griffiths # Maintainer: Gaetan Bisson # ALARM: Kevin Mihelich # - use makefile.linux_any_cpu pkgname=p7zip pkgver=9.38.1 pkgrel=2 pkgdesc='Command-line version of the 7zip compressed file archiver' url='http://p7zip.sourceforge.net/' license=('GPL' 'custom') arch=('i686' 'x86_64') depends=('gcc-libs' 'bash') optdepends=('wxgtk: GUI' 'desktop-file-utils: desktop entries') makedepends=('yasm' 'nasm' 'wxgtk') source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}_${pkgver}_src_all.tar.bz2" 'osversion.patch' '7zFM.desktop') sha1sums=('6b1eccf272d8b141a94758f80727ae633568ba69' '8c086db1c7be0d52d2ac971f44adbdccf6dd82de' '441e8d89457f165c22015dedd0c1ee88504f333c') options=('!makeflags') install=install prepare() { cd "${srcdir}/${pkgname}_${pkgver}" cp makefile.linux_any_cpu_gcc_4.X makefile.machine patch -p1 -i ../osversion.patch sed -i 's/x86_64-linux-gnu//g' CPP/7zip/*/*/*.depend rm GUI/kde4/p7zip_compress.desktop # FS#43766 } build() { cd "${srcdir}/${pkgname}_${pkgver}" make all4 OPTFLAGS="${CXXFLAGS}" } package() { cd "${srcdir}/${pkgname}_${pkgver}" make install \ DEST_DIR="${pkgdir}" \ DEST_HOME="/usr" \ DEST_MAN="/usr/share/man" # Doc and licenses cp -a DOC/* "${pkgdir}"/usr/share/doc/p7zip install -d "${pkgdir}"/usr/share/licenses/p7zip ln -s -t "${pkgdir}"/usr/share/licenses/p7zip \ /usr/share/doc/p7zip/License.txt \ /usr/share/doc/p7zip/unRarLicense.txt # Integration with stuff... install -Dm644 GUI/p7zip_32.png "${pkgdir}"/usr/share/icons/hicolor/32x32/apps/p7zip.png install -d "${pkgdir}"/usr/share/{applications,kde4/services/ServiceMenus} cp GUI/kde4/* "${pkgdir}"/usr/share/kde4/services/ServiceMenus/ cp ../7zFM.desktop "${pkgdir}"/usr/share/applications/ ln -s 7zCon.sfx "${pkgdir}"/usr/lib/p7zip/7z.sfx find GUI/help -type d -exec chmod 755 {} \; cp -r GUI/help "${pkgdir}"/usr/lib/p7zip/ chmod -R a+r,u+w,a+X "${pkgdir}/usr" }