summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 988e4ce041423962ca5978e15c8d2eabc11ac96c (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
# Maintainer: twa022 <twa022 at gmail dot com>

_pkgname=dconf-editor
pkgver=3.20.3
pkgname=${_pkgname}-${pkgver%.*}
pkgrel=1
pkgdesc="dconf configuration editor (old interface)"
arch=(i686 x86_64)
url="https://wiki.gnome.org/Projects/dconf"
license=(GPL3)
depends=('gtk3' 'dconf')
conflicts=("${_pkgname}")
provides=("${_pkgname}=${pkgver}")
makedepends=('vala' 'intltool')
source=(http://download.gnome.org/sources/$_pkgname/${pkgver%.*}/$_pkgname-$pkgver.tar.xz)
sha256sums=('a8721499a277550b28d8dd94dafbea6efeb95fa153020da10603d0d4d628c579')

build() {
  cd $_pkgname-$pkgver
  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
  make
}

package() {
  cd $_pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: