Update to 0.2

This commit is contained in:
Ivan Bushchik 2022-06-21 09:17:06 +03:00
commit 9242fa6088
No known key found for this signature in database
GPG key ID: 3E4E9C7D66E44BF7
2 changed files with 34 additions and 0 deletions

17
.SRCINFO Normal file
View file

@ -0,0 +1,17 @@
pkgbase = plainbase
pkgdesc = plainDE base files
pkgver = 0.2
pkgrel = 1
url = https://plainde.org
arch = x86_64
arch = i686
arch = arm
arch = armv6h
arch = armv7h
arch = aarch64
license = GPL3
makedepends = git
source = git+https://github.com/plainDE/plainBase.git#tag=0.2
sha256sums = SKIP
pkgname = plainbase

17
PKGBUILD Normal file
View file

@ -0,0 +1,17 @@
# Maintainer: Ivan 'ivabus' Bushchik ivabus@ivabus.dev -> https://github.com/ivabus
pkgname=plainbase
pkgver=0.2
pkgrel=1
pkgdesc="plainDE base files"
arch=(x86_64 i686 arm armv6h armv7h aarch64)
url="https://plainde.org"
license=(GPL3)
makedepends=(git)
source=("git+https://github.com/plainDE/plainBase.git#tag=${pkgver}")
sha256sums=('SKIP')
package() {
mkdir -p $pkgdir/usr
cp -r $srcdir/plainBase/usr/* $pkgdir/usr/
}