Compare commits

...

2 Commits

Author SHA1 Message Date
chic_luke 7612897c63 Merge pull request 'PKGBUILD letsgoooo' (#2) from alecs/figasm:master into master
Reviewed-on: #2
2021-05-14 20:55:09 +02:00
alecs ab0064ed66 PKGBUILD letsgoooo 2021-05-14 20:52:08 +02:00
1 changed files with 19 additions and 0 deletions

19
PKGBUILD Normal file
View File

@ -0,0 +1,19 @@
pkgname=figasm
pkgver=69.420
pkgrel=1
pkgdesc="figasm è una semplice port in Assembly del celebre figa"
arch=('x86_64')
url="https://git.ignuranza.net/chic_luke/figasm.git"
license=('SWAG')
makedepends=('git')
build() {
git clone "${url}"
}
package() {
cd "${pkgname}"
make
make DESTDIR="$pkgdir" install
}