blob: 2a6722a0ecf73266723ea4d6533733f497bad764 (
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.2
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=('55d671312e64e2f013886243de82fe0e')
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
}
|