blob: c49379b511f1167efd40e22f56dc5ae5c79e0008 (
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
39
40
41
42
43
44
45
46
47
48
49
|
# $Id: PKGBUILD 88085 2013-04-11 09:03:50Z lcarlier $
# Maintainer : Laurent Carlier <lordheavym@gmail.com>
# Contributor: dionydonny <dionydonny@gmail.com>
# Contributor: Ermanno <erm67@yahoo.it>
pkgname=chmsee
pkgver=2.0
pkgrel=5
arch=('i686' 'x86_64')
pkgdesc="A chm (MS HTML help file format) viewer based on xulrunner."
url="http://chmsee.googlecode.com/"
license=('GPL')
depends=('xulrunner>18.0' 'xulrunner<21.0' 'chmlib' 'desktop-file-utils')
makedepends=('python2')
#source=(chmsee-$pkgver.tar.gz::https://github.com/jungleji/chmsee/tarball/v$pkgver
#source=(https://github.com/jungleji/chmsee/archive/b2a3c2ad32bfe9db067665ea1928d7e130d1b5e7.zip
source=(https://chmsee.googlecode.com/files/${pkgname}-${pkgver}.tar.gz
chmsee)
install=chmsee.install
md5sums=('a9a1e79094e5a2674caa3b1f1e34f5e7'
'1787edd1de8aa75bd9fa75a5ab319e85')
build() {
cd ${srcdir}/chmsee-*/src
cp Makefile.arch Makefile
sed -i -e 's/17.*/18.0/g' ../application.ini
sed -i -e 's/19.*/20.0/g' ../application.ini
make -j1
}
package() {
cd ${srcdir}/chmsee-*
install -d ${pkgdir}/usr/share/chmsee
cp -a * ${pkgdir}/usr/share/chmsee
rm -r ${pkgdir}/usr/share/chmsee/src
install -Dm644 data/chmsee.desktop.in \
${pkgdir}/usr/share/applications/chmsee.desktop
# Fix FS#25152
sed -i -e 's/_//g' ${pkgdir}/usr/share/applications/chmsee.desktop
#
install -d ${pkgdir}/usr/share/pixmaps
install -Dm644 data/chmsee-icon.png ${pkgdir}/usr/share/pixmaps
install -Dm755 ${srcdir}/chmsee ${pkgdir}/usr/bin/chmsee
# install -d ${pkgdir}/usr/share/icons
# cp -a data/icons/* ${pkgdir}/usr/share/icons/
}
|