mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
added extra/p7zip 9.20.1-6
This commit is contained in:
parent
b88af3b6fc
commit
d5ea6df476
3 changed files with 89 additions and 0 deletions
9
extra/p7zip/7zFM.desktop
Normal file
9
extra/p7zip/7zFM.desktop
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=7-Zip FM
|
||||
GenericName=7-Zip File Manager
|
||||
Type=Application
|
||||
Categories=GTK;Utility;Archiving;Compression;
|
||||
Terminal=false
|
||||
Icon=p7zip
|
||||
Exec=7zFM
|
67
extra/p7zip/PKGBUILD
Normal file
67
extra/p7zip/PKGBUILD
Normal file
|
@ -0,0 +1,67 @@
|
|||
# $Id: PKGBUILD 143960 2011-11-30 22:27:20Z andrea $
|
||||
# Contributor: Thayer Williams <thayer@archlinux.org>
|
||||
# Contributor: Hugo Doria <hugo@archlinux.org>
|
||||
# Contributor: TuxSpirit<tuxspirit@archlinux.fr> 2007/11/17 21:22:36 UTC
|
||||
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
|
||||
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - change optimization to O0 to fix ICE
|
||||
# - use makefile.linux_any_cpu
|
||||
|
||||
plugrel=1
|
||||
|
||||
pkgname=p7zip
|
||||
pkgver=9.20.1
|
||||
pkgrel=6
|
||||
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=('wxgtk')
|
||||
options=('!makeflags')
|
||||
source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}_${pkgver}_src_all.tar.bz2"
|
||||
'7zFM.desktop')
|
||||
sha1sums=('1cd567e043ee054bf08244ce15f32cb3258306b7'
|
||||
'f2c370d6f1b286b7ce9a2804e22541b755616a40')
|
||||
|
||||
install=install
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}_${pkgver}"
|
||||
|
||||
CFLAGS=`echo $CFLAGS | sed -e 's/-O2/-O0/'` && CXXFLAGS="$CFLAGS"
|
||||
cp makefile.linux_any_cpu makefile.machine
|
||||
|
||||
make all4 OPTFLAGS="${CXXFLAGS}"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}_${pkgver}"
|
||||
|
||||
make install \
|
||||
DEST_DIR="${pkgdir}" \
|
||||
DEST_HOME="/usr" \
|
||||
DEST_MAN="/usr/share/man"
|
||||
|
||||
# Licenses
|
||||
install -d "${pkgdir}"/usr/share/licenses/p7zip
|
||||
ln -s -t "${pkgdir}"/usr/share/licenses/p7zip \
|
||||
/usr/share/doc/p7zip/DOCS/License.txt \
|
||||
/usr/share/doc/p7zip/DOCS/unRarLicense.txt
|
||||
|
||||
# Integration with stuff...
|
||||
install -D 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 u+w "${pkgdir}/usr"
|
||||
}
|
13
extra/p7zip/install
Normal file
13
extra/p7zip/install
Normal file
|
@ -0,0 +1,13 @@
|
|||
post_install() {
|
||||
[[ -x usr/bin/update-desktop-database ]] && update-desktop-database -q || true
|
||||
[[ -x usr/bin/gtk-update-icon-cache ]] && gtk-update-icon-cache -q -t -f usr/share/icons/hicolor || true
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
Loading…
Reference in a new issue