CMakeLists.txt AUTHORS COPYING
-
CMakeLists.txt
do the job - Rename
LICENSE
>COPYING
- Add
AUTHORS
(Including Manjarifications)
PKGBUILD PROTO CODE:
# Maintainer: Stefano Capitani <stefano@manjaro.org>
pkgname=papirus-maia-icon-theme
pkgver=20180417.c061b7b
pkgrel=1
pkgdesc="Manjaro variation of Papirus icon theme"
arch=('any')
url="https://github.com/Ste74/papirus-maia-icon-theme"
license=("LGPL3")
depends=('gtk-update-icon-cache' 'papirus-icon-theme')
makedepends=('cmake' 'git')
conflicts=("$pkgname-git")
options=('!strip')
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd ${pkgname/-git/}
(
git show --format='%cI' -q master | sed 's/T.*//g;s/-//g'
echo .
git rev-parse --short master
) | tr -d '\n'
}
build() {
mkdir -p ${srcdir}/build
cd ${srcdir}/build
cmake ../${pkgname}
make
}
package() {
make -C build DESTDIR="${pkgdir}" install
}