term-owo-cpp/PKGBUILD
2024-06-20 15:03:39 +01:00

22 lines
459 B
Bash

pkgname="term-owo-cpp"
pkgver=1.0.0
pkgrel=1
pkgdesc="A simple C++ program that owofies text"
arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64')
depends=('gcc' 'git')
license=('MIT')
source=("git+https://git.alfieking.dev/acetheking987/term-owo-cpp.git")
md5sums=('SKIP')
build() {
cd "$srcdir/term-owo-cpp"
make . -B build
cd build && make
}
package() {
cd "$srcdir/term-owo-cpp/build"
install -Dm755 owo "$pkgdir/usr/bin/owo"
}