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-12-26 22:17:09 +01:00
pkgver=0.6.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-12-26 22:17:09 +01:00
sha512sums=('94ca5887262f2b559aa2783f970ef4c34de4f0475845eae21b98fcbb192c8b38a30268bb9efb9f112c64666ecdde21948a94e279c341edf5ce5820f046f0d49f')
2018-12-05 16:54:40 +01:00
package() {
cd "$srcdir/cmake_format-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1
}