23 dec 2010
evopedia [1] is now working on arch linux! i’ve uploaded the PKGBUILD to AUR [2], which means that it is now very easy for arch linux users to use evopedia.
with some luck a developer will pick up that package and put it into the main distribution. in case you want to use the package directly (without waiting for official support, read on)
download the PKGBUILD source from [2]. then read [3] and in short:
as root:
pacman -S base-devel
as root:
makepkg PKGBUILD
as normal user:
pacman -U evopedia-0.4.2-1-x86_64.pkg.tar.xz
if you get any trouble, read the documentation ;-)
# Maintainer: Joachim Schiele
pkgname=evopedia
pkgver=0.4.2
pkgrel=1
pkgdesc='Offline Wikipedia Viewer'
arch=('i686' 'x86_64')
url='http://evopedia.info/'
license=('GPL3')
depends=('bzip2' 'qt')
makedepends=()
md5sums=('2f9672ebd550f01a4b71bf67a4140911')
#source="http://lastlog.de/misc/${pkgname}-${pkgver}.tar.gz"
source="http://evopedia.info/src/${pkgname}-${pkgver}.tar.gz"
build() {
cd "$srcdir/$pkgname-$pkgver"
/usr/bin/qmake evopedia.pro PREFIX="$pkgdir"/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make install
}
# vim:set ts=2 sw=2 et: