initial committ

This commit is contained in:
Evgenii Alekseev 2023-08-14 02:06:42 +03:00
commit f6b30130bf
4 changed files with 38 additions and 0 deletions

9
package1/.SRCINFO Normal file
View File

@ -0,0 +1,9 @@
pkgbase = package1
pkgdesc = Local package for testing purposes
pkgver = 20230814
pkgrel = 1
url = https://example.com
arch = any
license = GPL
pkgname = package1

9
package1/PKGBUILD Normal file
View File

@ -0,0 +1,9 @@
pkgname=package1
pkgver=20230814
pkgrel=1
pkgdesc="Local package for testing purposes"
arch=('any')
url="https://example.com"
license=('GPL')
source=()
sha256sums=()

10
package2/.SRCINFO Normal file
View File

@ -0,0 +1,10 @@
pkgbase = package2
pkgdesc = Local package for testing purposes
pkgver = 20230814
pkgrel = 1
url = https://example.com
arch = any
license = GPL
depends = package1
pkgname = package2

10
package2/PKGBUILD Normal file
View File

@ -0,0 +1,10 @@
pkgname=package2
pkgver=20230814
pkgrel=1
pkgdesc="Local package for testing purposes"
arch=('any')
url="https://example.com"
license=('GPL')
source=()
depends=('package1')
sha256sums=()