Add initial files and a dummy package

This commit is contained in:
Martin Valba 2023-10-27 14:52:50 +03:00
parent d1fa882351
commit 2aa7f31898
2 changed files with 36 additions and 0 deletions

25
PKGBUILD Executable file
View File

@ -0,0 +1,25 @@
pkgname=
pkgver=
pkgrel=1
arch=('x86_64')
depends=()
makedepends=()
source=()
prepare() {
cd $pkgname-$pkgver
}
build() {
cd $pkgname-$pkgver
}
package() {
cd $pkgname-$pkgver
}

11
dummy/PKGBUILD Executable file
View File

@ -0,0 +1,11 @@
pkgname=dummy
pkgver=0.0.0
pkgrel=1
arch=('x86_64')
depends=(glibc)
makedepends=(make gcc)
package() {
echo "I'm a dummy package :)"
}