mirror of
https://github.com/archlinux-jerry/pkgbuilds
synced 2024-11-22 14:00:40 +08:00
add package: paper-icon-theme-git
This commit is contained in:
parent
e253c0deaa
commit
fabc5c5f7b
3 changed files with 45 additions and 0 deletions
16
paper-icon-theme-git/.SRCINFO
Normal file
16
paper-icon-theme-git/.SRCINFO
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
pkgbase = paper-icon-theme-git
|
||||||
|
pkgdesc = Paper is an icon theme for GTK based desktops and fits perfectly the paper-gtk-theme
|
||||||
|
pkgver = 805.8c7bf8d2
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/snwh/paper-icon-theme
|
||||||
|
arch = any
|
||||||
|
license = CC BY-SA 4.0
|
||||||
|
makedepends = git
|
||||||
|
makedepends = meson
|
||||||
|
depends = gtk-update-icon-cache
|
||||||
|
provides = paper-icon-theme
|
||||||
|
source = paper-icon-theme-git::git+https://github.com/snwh/paper-icon-theme.git
|
||||||
|
md5sums = SKIP
|
||||||
|
|
||||||
|
pkgname = paper-icon-theme-git
|
||||||
|
|
27
paper-icon-theme-git/PKGBUILD
Normal file
27
paper-icon-theme-git/PKGBUILD
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
pkgname=paper-icon-theme-git
|
||||||
|
pkgver=805.8c7bf8d2
|
||||||
|
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)
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
meson build --prefix=/usr
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
DESTDIR="$pkgdir" ninja -C "build" install
|
||||||
|
}
|
2
paper-icon-theme-git/autobuild.yaml
Normal file
2
paper-icon-theme-git/autobuild.yaml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
type:
|
||||||
|
auto
|
Loading…
Reference in a new issue