This commit is contained in:
Sebastian Korotkiewicz 2025-09-27 04:28:54 +02:00
parent 980497c25f
commit cb6a6d8499
No known key found for this signature in database
GPG Key ID: 5BDC557B496BDB0D
3 changed files with 0 additions and 33 deletions

@ -1 +0,0 @@
Subproject commit 7e36fb3a05a8b009c4db4ff31e3154fff1ca5f09

View File

@ -1,11 +0,0 @@
pkgbase = another-package
pkgdesc = Another test package for HTTP repo
pkgver = 2.0.0
pkgrel = 1
url = https://example.com
arch = x86_64
license = MIT
depends = bash
depends = coreutils
pkgname = another-package

View File

@ -1,21 +0,0 @@
# Maintainer: Test User <test@example.com>
pkgname=another-package
pkgver=2.0.0
pkgrel=1
pkgdesc="Another test package for HTTP repo"
arch=('x86_64')
url="https://example.com"
license=('MIT')
depends=('bash' 'coreutils')
makedepends=()
build() {
echo "Building another-package..."
}
package() {
mkdir -p "$pkgdir/usr/bin"
echo '#!/bin/bash' > "$pkgdir/usr/bin/another-package"
echo 'echo "Hello from another-package!"' >> "$pkgdir/usr/bin/another-package"
chmod +x "$pkgdir/usr/bin/another-package"
}