summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: afc5c496baed2026bc64f6cde7b84173bc291bec (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
32
pkgname=paper-icon-theme-git
pkgver=800.7860fba8
pkgrel=1
pkgdesc="Paper is an icon theme for GTK based desktops and fits perfectly the paper-gtk-theme"
arch=(any)
url="https://github.com/snwh/paper-icon-theme"
license=('CC BY-SA 4.0')
depends=('gtk-update-icon-cache')
makedepends=('git' 'meson')
provides=('paper-icon-theme')
source=("$pkgname"::'git+https://github.com/snwh/paper-icon-theme.git')
md5sums=('SKIP')

pkgver() {
  cd "$srcdir/$pkgname"
  echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}

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

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

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