Initial commit
This commit is contained in:
commit
d3b7e10198
|
|
@ -0,0 +1,15 @@
|
||||||
|
pkgbase = atools
|
||||||
|
pkgdesc = APKBUILD and aports linter for Alpine Linux
|
||||||
|
pkgver = 19.0.3
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://gitlab.alpinelinux.org/Leo/atools
|
||||||
|
arch = x86_64
|
||||||
|
license = MIT
|
||||||
|
checkdepends = bats-core
|
||||||
|
makedepends = scdoc
|
||||||
|
makedepends = redo-c
|
||||||
|
source = atools-19.0.3.tar.gz::https://gitlab.alpinelinux.org/Leo/atools/-/archive/19.0.3/atools-19.0.3.tar.gz
|
||||||
|
sha256sums = ce4312fa86f72b3344b84c01e70d4bc1da36b015a22c4c83250906445d46408a
|
||||||
|
|
||||||
|
pkgname = atools
|
||||||
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
pkg/*
|
||||||
|
src/*
|
||||||
|
*.pkg.tar.xz
|
||||||
|
*.tar.gz
|
||||||
|
|
@ -0,0 +1,30 @@
|
||||||
|
# Maintainer: TBK <aur at jjtc dot eu>
|
||||||
|
# Contributor: TBK <aur at jjtc dot eu>
|
||||||
|
|
||||||
|
pkgname=atools
|
||||||
|
pkgver=19.0.3
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='APKBUILD and aports linter for Alpine Linux'
|
||||||
|
url='https://gitlab.alpinelinux.org/Leo/atools'
|
||||||
|
arch=('x86_64')
|
||||||
|
license=('MIT')
|
||||||
|
makedepends=('scdoc' 'redo-c')
|
||||||
|
checkdepends=('bats-core')
|
||||||
|
source=("$pkgname-$pkgver.tar.gz::https://gitlab.alpinelinux.org/Leo/atools/-/archive/$pkgver/atools-$pkgver.tar.gz")
|
||||||
|
sha256sums=('ce4312fa86f72b3344b84c01e70d4bc1da36b015a22c4c83250906445d46408a')
|
||||||
|
_builddir="$pkgname-$pkgver"
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$_builddir"
|
||||||
|
redo build
|
||||||
|
}
|
||||||
|
|
||||||
|
check() {
|
||||||
|
cd "$_builddir"
|
||||||
|
redo check
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$_builddir"
|
||||||
|
DESTDIR="$pkgdir" redo install
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
# atools
|
||||||
|
Arch User Repository atools - APKBUILD and aports linter for Alpine Linux
|
||||||
|
|
||||||
|
## Update package
|
||||||
|
|
||||||
|
* Update package version in PKGBUILD
|
||||||
|
* Generate new checksums with
|
||||||
|
|
||||||
|
```$ updpkgsums```
|
||||||
|
|
||||||
|
* Test install
|
||||||
|
|
||||||
|
```$ makepkg -si```
|
||||||
|
|
||||||
|
* Update .SRCINFO
|
||||||
|
|
||||||
|
```$ makepkg --printsrcinfo > .SRCINFO```
|
||||||
Loading…
Reference in New Issue