|
发表于 2008-7-1 13:59:49
|
显示全部楼层
chmsee-1.0.0 依赖 xulrunner-1.8
最近 xulrunner 升级到 1.9 了
解决办法:
1) 用 chmsee-0.96 (不依赖 xulrunner)
2) 用 chmsee-1.0.1 (依赖 xulrunner-1.9)
chmsee-1.0.1 的方案:- pkgname=chmsee
- pkgver=1.0.1
- pkgrel=1
- arch=('i686')
- pkgdesc="A chm (MS HTML help file format) viewer based on xulrunner."
- url="http://chmsee.gro.clinux.org/"
- license="GPL"
- depends=(gtk2 libglade chmlib libgcrypt xulrunner)
- source=(http://gro.clinux.org/frs/download.php/2245/chmsee-1.0.1.tar.gz)
- md5sums=(0ea3d439ab240f12bc0f35632bbe114d)
- build() {
- cd $srcdir/$pkgname-$pkgver
- # ./autogen.sh
- ./configure --prefix=/usr --with-gecko=libxul
- make || return 1
- make prefix=$pkgdir/usr install
- }
复制代码 |
|