PKGBUILDs/cmake-format/default/PKGBUILD

21 lines
761 B
Bash
Raw Normal View History

2018-12-06 18:05:42 +01:00
# Maintainer: Martchus <martchus@gmx.net>
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where
# you also find the URL of a binary repository.
2018-12-05 16:54:40 +01:00
pkgname=cmake-format
2019-09-29 22:35:18 +02:00
pkgver=0.5.5
2019-05-17 17:22:59 +02:00
pkgrel=1
2018-12-06 18:05:42 +01:00
pkgdesc='Source code formatter for CMake listfiles'
2018-12-05 16:54:40 +01:00
arch=('any')
url='https://github.com/cheshirekow/cmake_format'
license=('GPL3')
2019-06-27 10:58:53 +02:00
depends=('python-setuptools' 'python-yaml' 'python-jinja')
2018-12-05 16:54:40 +01:00
source=("$pkgname-$pkgver.tar.gz::https://github.com/cheshirekow/cmake_format/archive/v${pkgver}.tar.gz")
2019-09-29 22:35:18 +02:00
sha512sums=('7aa39480cb01b1e46932270a312f92821a531cf29babb91201b18046dc91cedcc191ab424d3cb0dbf7b8e44010dfc0accaabdfa47a4fae19293cd193c22b3641')
2018-12-05 16:54:40 +01:00
package() {
cd "$srcdir/cmake_format-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1
}