blob: 500024e74ddd4b1041cc39aea74c2fa5e8d27333 (
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: Campbell Jones <arch at serebit dot com>
pkgname=budgie-backgrounds-git
pkgver=v0.1.r0.g3cbb7cf
pkgrel=2
pkgdesc="The default background set for the Budgie Desktop - latest git"
url="https://github.com/BuddiesOfBudgie/budgie-backgrounds"
license=("custom:CC0-1.0")
arch=(any)
depends=()
makedepends=(git meson imagemagick jhead)
provides=('budgie-backgrounds')
conflicts=('budgie-backgrounds')
source=("$pkgname"::'git+https://github.com/BuddiesOfBudgie/budgie-backgrounds.git')
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
git describe --tags --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
arch-meson "$pkgname" build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
install -Dm644 "$pkgname"/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|