summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b3aa581000dd35794a3e1a0a09f889d993a34c04 (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
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>

pkgname=dynamic-wallpaper-editor
pkgver=1.11.0
pkgrel=1
pkgdesc='Dynamic Wallpaper Editor'
arch=(any)
url='https://github.com/maoschanz/dynamic-wallpaper-editor'
depends=(python hicolor-icon-theme)
license=(GPL3)
makedepends=(meson ninja)
source=("$pkgname-$pkgver.tar.gz::https://github.com/maoschanz/$pkgname/archive/$pkgver.tar.gz")
sha256sums=('0e34de690bdd969bdccf44a4fd82b544507d0b8afbd1e32339090a658704bf84')

build() {
  mkdir -p build
  arch-meson build $pkgname-$pkgver -D werror=false -D b_ndebug=true
  ninja -C build
}

package() {
  DESTDIR="$pkgdir" ninja -C build install
}

# vim: ts=2 sw=2 et