mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
78 lines
2.6 KiB
Bash
78 lines
2.6 KiB
Bash
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
# Contributer: Daniele Cocca <jmc@chakra-project.org>
|
|
pkgname=peazip
|
|
pkgver=5.5.3
|
|
pkgrel=1
|
|
pkgdesc="Free, Open Source file and archive manager. Supports 7Z, ACE, ARC, CAB, ISO, PAQ, PEA, RAR, TAR, ZIP and many more archive formats."
|
|
arch=('x86_64')
|
|
url="http://peazip.org/"
|
|
license=('GPL')
|
|
depends=('zip' 'unzip' 'unrar' 'xz' 'p7zip' 'unarj' 'fpc-qtbindings')
|
|
makedepends=('lazarus')
|
|
optdepends=('rar: support for RAR archive compression')
|
|
categories=('utils')
|
|
source=("http://sourceforge.net/projects/peazip/files/${pkgver}/${pkgname}-${pkgver}.src.zip"
|
|
'altconf.txt')
|
|
md5sums=('58c518ebc8c4020d0e3ec1778faa6fd7'
|
|
'8bc81e527370ae11c78511db5e2bbeb4')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}.src
|
|
for i in project_pea.lpi project_peach.lpi project_gwrap.lpi ; do
|
|
lazbuild -B --cpu=${arch} --verbose ${i} \
|
|
--lazarusdir=/usr/lib/lazarus \
|
|
--widgetset=qt
|
|
done
|
|
}
|
|
|
|
package() {
|
|
# Since the dev are lazy, we introduce several path for easier description
|
|
_srcdir=${srcdir}/${pkgname}-${pkgver}.src
|
|
_datadir=usr/share/${pkgname}
|
|
cd ${_srcdir}
|
|
install -dm755 ${pkgdir}/${_datadir}
|
|
|
|
# Move language files and utilities
|
|
cp -rv res/themes ${pkgdir}/${_datadir}/res/
|
|
cp -rv res/lang ${pkgdir}/${_datadir}/res/
|
|
install -Dm644 ${srcdir}/altconf.txt ${pkgdir}/${_datadir}/res/altconf.txt
|
|
|
|
# Link tools
|
|
for i in 7z upx ; do
|
|
install -dm755 ${pkgdir}/${_datadir}/res/${i}
|
|
ln -s /usr/bin/${i} ${pkgdir}/${_datadir}/res/${i}/${i}
|
|
done
|
|
|
|
# Install binary to datadir/res
|
|
for i in pea pealauncher ; do
|
|
install -Dm755 ${i} ${pkgdir}/${_datadir}/res/${i}
|
|
done
|
|
|
|
# Install peazip to datadir because at start need to read res/altconf.txt
|
|
install -Dm755 peazip ${pkgdir}/${_datadir}/peazip
|
|
install -dm755 ${pkgdir}/usr/bin
|
|
ln -s /${_datadir}/peazip ${pkgdir}/usr/bin/peazip
|
|
|
|
# Preparing for desktop installation
|
|
cd ${_srcdir}/FreeDesktop_integration/
|
|
|
|
# Move the Dolohin integration
|
|
for i in peazipadd.desktop \
|
|
peazipext.desktop \
|
|
peazipextfolder.desktop \
|
|
peazipexthere.desktop \
|
|
peazipopen.desktop ; do
|
|
install -Dm755 kde4-dolphin/usr/share/kde4/services/ServiceMenus/${i} \
|
|
${pkgdir}/usr/share/kde4/services/ServiceMenus/${i}
|
|
done
|
|
|
|
# Move mimetypes and icons
|
|
install -Dm755 peazip.desktop ${pkgdir}/usr/share/applications/peazip.desktop
|
|
install -Dm755 peazip.png ${pkgdir}/usr/share/icons/hicolor/256x256/apps/peazip.png
|
|
|
|
# License file
|
|
for r in copying.txt copying_we.txt legal.txt; do
|
|
install -Dm644 ${_srcdir}/${r} ${pkgdir}/usr/share/licenses/${pkgname}/${r}
|
|
done
|
|
}
|