diff options
author | 2017-06-30 19:05:56 +0200 | |
---|---|---|
committer | 2017-06-30 19:05:56 +0200 | |
commit | c3641231df819e9a693424e383d32a8a024de052 (patch) | |
tree | 9c1e1f644471fbef3257976627b0807b38174697 | |
parent | adc62f9ac2d51012fb11801e391540b7e1046e7d (diff) | |
download | flat-remix-c3641231df819e9a693424e383d32a8a024de052.tar.gz flat-remix-c3641231df819e9a693424e383d32a8a024de052.zip |
added PKGBUILD
-rw-r--r-- | PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000..042c72c5f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: DяA <daniruizdealegria@gmail.com> + +pkgname=flat-remix +pkgver=r87.adc62f9 +pkgrel=1 +pkgdesc="Flat remix is a pretty simple icon theme inspired on material design. It is mostly flat with some shadows, highlights and gradients for some depth and uses a colorful palette with nice contrasts." +arch=('any') +url="https://github.com/daniruiz/Flat-Remix/" +license=('GPL-3.0') +depends=('xdg-utils') +source=("${pkgname}::git+https://github.com/daniruiz/Flat-Remix.git") + +sha256sums=('SKIP') + +pkgver() { + cd "${pkgname}" + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +package() { + cd "${srcdir}/${pkgname}/" + install -dm755 "${pkgdir}/usr/share/icons" + cp -a "Flat Remix" "${pkgdir}/usr/share/icons/Flat Remix" + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |