Initial commit

This commit is contained in:
TBK 2020-03-17 16:21:22 +01:00
commit d3b7e10198
No known key found for this signature in database
GPG Key ID: 6D4FD19CB66C95EA
4 changed files with 66 additions and 0 deletions

15
.SRCINFO Normal file
View File

@ -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

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
pkg/*
src/*
*.pkg.tar.xz
*.tar.gz

30
PKGBUILD Normal file
View File

@ -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
}

17
README.md Normal file
View File

@ -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```