blob: 8d8052f7aaf1212b8a2707cee95a884eb859e65d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#Maintainer : Papajoke <papajoke [at] manjaro [dot] fr>
pkgname=pacnew-chaser
pkgver=0.9.22
pkgrel=2
url="https://gitlab.com/papajoker/pacnew-chaser"
pkgdesc="manage .pacnew files, compare and merge (qt gui)"
arch=('x86_64')
license=('GPL')
install=.install
depends=('qt5pas' 'git')
optdepends=('diffuse: editor, compare merge files'
'kompare: editor, compare merge files'
'meld: editor, compare merge files')
source=("https://www.manjaro.fr/forum/datas/pacnew-chaser-qt-${pkgver}.tar.gz")
sha512sums=('107bbeffe6272d4c9ddeb828c2d67ce896f83a5f5ce947c224d7e664cf010893727660fb6b95f91635bf81c77380298f2f36aa184d492e3daf8816df38cb6f5a')
package() {
#cd "$srcdir"
install -d ${pkgdir}{/usr/{bin,share/{applications,pixmaps,polkit-1/actions,locale/fr/LC_MESSAGES,mime/packages},lib/$pkgname},/etc}
install -m755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
install -m644 lib/man.css "${pkgdir}/usr/lib/${pkgname}/man.css"
install -m755 lib/pacnews "${pkgdir}/usr/lib/${pkgname}/pacnews"
install -m644 "lib/${pkgname}.hook" "${pkgdir}/usr/lib/${pkgname}/${pkgname}.hook"
install -m644 "lib/${pkgname}.xml" "${pkgdir}/usr/share/mime/packages/${pkgname}.xml"
install -m644 "lib/${pkgname}.ini" "${pkgdir}/etc/${pkgname}.ini"
install -m644 "${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
install -m644 "images/${pkgname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
#mkdir -p "${pkgdir}/usr/share/polkit-1/actions/"
msg2 "install polkit policies"
for p in diffuse meld kompare rm vscode ; do
install -m644 "policies/org.manjaro.fr.pacnew.${p}.policy" "${pkgdir}/usr/share/polkit-1/actions/"
done
msg2 "install locales"
for p in fr ; do
cp "languages/${pkgname}.${p}.po" "${pkgdir}/usr/share/locale/${p}/LC_MESSAGES/${pkgname}.po"
[ -f "languages/lclstrconsts.${p}.po" ] && cp "languages/lclstrconsts.${p}.po" "${pkgdir}/usr/share/locale/${p}/LC_MESSAGES/lclstrconsts.po"
done
}
|