blob: 9360d17ce7db2705466c8442fd03caaadeeae6ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Raiku <rikunn.rikunn@proton.me>
pkgname=sam-rewritten
pkgver=1.0
pkgrel=1
url="https://github.com/gitRaiku/sam"
pkgdesc="Software automatic mouth rewritten to use dynamically allocated memory"
arch=(any)
license=('GPL-3.0')
depends=('sdl2')
makedepends=('make')
source=("https://github.com/gitRaiku/sam/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('f6333d5c75f9949317ba9fd0f0d2398dd57a03f7b2fd81a1069c74e17c570628')
build() {
cd $srcdir/SAM-$pkgver
make
}
package() {
cd "SAM-$pkgver"
install -Dm 0755 sam -t "$pkgdir/usr/bin"
}
|