term-owo-cpp/PKGBUILD

21 lines
531 B
Bash
Raw Normal View History

2024-08-24 22:12:57 +01:00
pkgname="term-owo-git"
pkgver=1.0
2024-06-18 13:08:53 +01:00
pkgrel=1
pkgdesc="A simple C++ program that owofies text"
2024-08-24 22:12:57 +01:00
url="https://git.alfieking.dev/acetheking987/term-owo-cpp"
arch=(x86_64 i686 arm armv6h armv7h aarch64)
makedepends=(cmake git gcc)
2024-06-18 13:08:53 +01:00
license=('MIT')
source=("git+https://git.alfieking.dev/acetheking987/term-owo-cpp.git")
2024-09-19 13:11:19 +01:00
md5sums=('SKIP')
2024-06-18 13:08:53 +01:00
build() {
cd "$srcdir/term-owo-cpp"
2024-10-23 13:54:46 +01:00
make dirs build_unix
2024-09-19 13:11:19 +01:00
}
2024-06-18 13:08:53 +01:00
package() {
2024-06-20 15:03:39 +01:00
cd "$srcdir/term-owo-cpp/build"
2024-06-18 13:08:53 +01:00
install -Dm755 owo "$pkgdir/usr/bin/owo"
2024-10-23 12:28:41 +01:00
}