Hi, I'm trying to make my first package, and I have a few questions.
This package instals gnuplot scripts from https://github.com/aschn/gnuplot-colorbrewer I followed wiki instructions and get inspiration from emacs-gnuplot-mode-git, but this package does not use md5sums. Is it possible to get an md5sum from a git repository? If so, how? Should I submit this package to the AUR? -- Jorispilot -- GPG: 0x7A0BD74B 4597 EFE7 5759 4AE8 7813 2D06 19DB 70D1 7A0B D74B
# Maintainer: Jorispilot <[email protected]> pkgname=gnuplot-colorbrewer-git pkgver=1.0.9.ge8e4742 pkgrel=1 pkgdesc="ColorBrewer color schemes in gnuplot" arch=('any') url="https://github.com/aschn/gnuplot-colorbrewer" license=('Apache') source=("git+https://github.com/aschn/gnuplot-colorbrewer.git") md5sums=('SKIP') pkgver() { cd "$srcdir"/"${pkgname%-git}" git describe --tags | sed 's|-|.|g' } package() { cd "$srcdir"/"${pkgname%-git}" install -d "$pkgdir/usr/share/${pkgname%-git}/" cp -r "diverging" "qualitative" "sequential" "$pkgdir/usr/share/${pkgname%-git}/" }
