mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
570 B
Bash
21 lines
570 B
Bash
|
# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
||
|
pkgname=gpicview
|
||
|
pkgver=0.2.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="Picture viewer of the LXDE Desktop"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL2')
|
||
|
url="http://lxde.org/"
|
||
|
groups=('lxde')
|
||
|
depends=('gtk2')
|
||
|
makedepends=('pkgconfig' 'intltool')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
|
||
|
md5sums=('a2de255bf9bdc40746c0dc89b3454a10')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
./configure --sysconfdir=/etc --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install || return 1
|
||
|
}
|