arch install

This commit is contained in:
acetheking987 2024-06-18 12:08:53 +00:00
parent 6d2d778231
commit 494f9b1f32

21
PKGBUILD Normal file
View File

@ -0,0 +1,21 @@
pkgname="term-owo-cpp"
pkgver=1.0.0
pkgrel=1
pkgdesc="A simple C++ program that owofies text"
arch=('x86_64')
depends=('gcc' 'git')
license=('MIT')
source=("git+https://git.alfieking.dev/acetheking987/term-owo-cpp.git")
md5sums=('SKIP')
build() {
cd "$srcdir/term-owo-cpp"
g++ -o owo owo.cpp
}
package() {
cd "$srcdir/term-owo-cpp"
install -Dm755 owo "$pkgdir/usr/bin/owo"
}