mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
767 B
Bash
24 lines
767 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Eric Belanger <belanger@astro.umontreal.ca>
|
|
# Contributor: Ian Monroe <ian@monroe.nu>
|
|
|
|
pkgname=codeine
|
|
pkgver=1.0.1
|
|
pkgrel=2
|
|
pkgdesc="A simple, smart xine video player for KDE"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.methylblue.com/codeine/"
|
|
license=("GPL")
|
|
depends=('xine-lib' 'kdelibs' 'libxtst')
|
|
makedepends=('scons')
|
|
source=(http://www.methylblue.com/codeine/$pkgname-$pkgver-3.tar.bz2)
|
|
md5sums=('eaa4e7587e4fab38ae2796c070292296')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure prefix=/opt/kde
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
install -d $startdir/pkg/opt/kde/share/doc/HTML/en/codeine
|
|
install -m644 doc/en/* $startdir/pkg/opt/kde/share/doc/HTML/en/codeine/
|
|
}
|