summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c5eba4ef6f87eeabe0b643585fa78b93ac4f0d51 (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
# Maintainer: Phillip Schichtel <phillip.public@schich.tel>
pkgname=adapta-backgrounds
pkgver="0.5.3.1"
pkgrel=1
pkgdesc="Wallpaper collection for adapta-project"
arch=(any)
url="https://github.com/adapta-project/${pkgname}"
license=('GPL2' 'CCPL')
optdepends=('adapta-gtk-theme: The corresponding GTK theme')
makedepends=('glib2>=2.48.0'
             'libxml2'
             'meson')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
sha256sums=('18fd7304bd30139161c9dca6b62862deb6c63f2159314539c972498c51770769')

prepare() {
    cd "${pkgname}-${pkgver}"
    meson build --prefix=/usr
}

build() {
    cd "${pkgname}-${pkgver}/build"
    ninja
}

package() {
    cd "${pkgname}-${pkgver}/build"
    DESTDIR="$pkgdir" ninja install
}