Compare commits

...

No commits in common. "main" and "hlint-bin" have entirely different histories.

3 changed files with 44 additions and 3 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = hlint-bin
pkgdesc = Haskell source code suggestions. Packaged from upstream binary release.
pkgver = 3.4.1
pkgrel = 1
url = https://github.com/ndmitchell/hlint
arch = x86_64
license = BSD
depends = gmp
conflicts = hlint
source = https://github.com/ndmitchell/hlint/releases/download/v3.4.1/hlint-3.4.1-x86_64-linux.tar.gz
sha256sums = 2fe7d16cdcb3f1affedf8e51a6b274bfb935d5901f32606b37153b57c00ae0da
pkgname = hlint-bin

31
PKGBUILD Normal file
View file

@ -0,0 +1,31 @@
# Maintainer: Dino Morelli <dino@ui3.info>
pkgname=hlint-bin
_githubname=hlint
pkgver=3.4.1
pkgrel=1
pkgdesc='Haskell source code suggestions. Packaged from upstream binary release.'
arch=('x86_64')
url="https://github.com/ndmitchell/hlint"
license=('BSD')
depends=('gmp')
conflicts=('hlint')
source=("${url}/releases/download/v${pkgver}/${_githubname}-${pkgver}-${arch}-linux.tar.gz")
sha256sums=('2fe7d16cdcb3f1affedf8e51a6b274bfb935d5901f32606b37153b57c00ae0da')
# PKGBUILD functions
package() {
# Create dest directories
sharedir="${pkgdir}/usr/share/${_githubname}"
mkdir -p "$sharedir"
bindir="${pkgdir}/usr/bin"
mkdir "$bindir"
# Copy all source distribution files and move the binary into bin
cd "${srcdir}/${_githubname}-${pkgver}"
cp -r ./* "$sharedir"
mv "${sharedir}/${_githubname}" "$bindir"
}

View file

@ -1,3 +0,0 @@
# aur.git
This is a experimental mirror of the aur.git repository backing [the AUR](https://aur.archlinux.org).