mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
691 B
Bash
24 lines
691 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=libview
|
|
pkgver=0.6.4
|
|
pkgrel=1
|
|
pkgdesc="A collection of widgets that were developed at VMware"
|
|
arch=('i686' 'x86_64')
|
|
url="http://view.sourceforge.net"
|
|
options=('!libtool')
|
|
license=('MIT')
|
|
depends=('gtkmm')
|
|
source=(http://downloads.sf.net/sourceforge/view/libview-$pkgver.tar.gz)
|
|
md5sums=('e917f9c33e83e55e20d52fe251278c84')
|
|
|
|
build() {
|
|
cd $startdir/src/libview-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
|
|
install -D COPYING $startdir/pkg/usr/share/licenses/$pkgname/COPYING
|
|
}
|