blob: ccc716cd0a01c97b2bc2342148f75f17252af836 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: Nate Simon <njsimon10@gmail.com>
pkgname=xviewer
pkgver=2.4.3
pkgrel=1
pkgdesc="A simple and easy to use image viewer. X-Apps Project."
arch=('i686' 'x86_64' 'armv7h')
license=('GPL')
depends=('gtk3' 'glib2' 'cinnamon-desktop' 'libpeas')
makedepends=('gnome-common' 'libglade' 'gobject-introspection')
optdepends=('xviewer-plugins: Extra plugins')
provides=($pkgname)
conflicts=('xviewer-git')
url='https://github.com/linuxmint/xviewer'
source=("${pkgname}-${pkgver}-${pkgrel}.tar.gz::https://github.com/linuxmint/${pkgname}/archive/${pkgver}.tar.gz")
md5sums=('9ef4e308931c2a6c427e5fa52faf2fae')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
gnome-autogen.sh --prefix="/usr" \
--localstatedir="/var" \
--libexecdir="/usr/lib/${pkgname}"
make
}
package(){
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR="$pkgdir/" install
}
|