Add PKGBUILD

This commit is contained in:
Tom Willemse 2020-11-14 01:16:18 -08:00
parent 7fa91da508
commit 1a54dc9e89

17
PKGBUILD Normal file
View file

@ -0,0 +1,17 @@
# Maintainer: Tom Willemse <tom@ryuslash.org>
pkgname=cgit-pygments-wrapper
pkgver=1.0.0
pkgrel=1
pkgdesc="Small wrapper to customize the use of pygments for cgit"
depends=('python' 'python-pygments')
arch=('any')
source=('cgit-pygments-wrapper')
url="http://code.ryuslash.org/"
license=("GPL3")
md5sums=('SKIP')
package() {
install -Dm755 "${srcdir}/cgit-pygments-wrapper" \
"${pkgdir}/usr/bin/cgit-pygments-wrapper"
}