blob: f30b11b65b246f95aa9bd9d7e94aea60f416e2f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: Andrey Gorshkov <spacebiker@airmail.cc>
pkgname=afetch-asm-git
_pkgname=afetch-asm
pkgver=1
pkgrel=1
epoch=
pkgdesc="A command-line system information tool written in x86 assembly language"
arch=("x86" "x86_64")
url="https://github.com/sticky-tea/afetch"
license=('GPL')
groups=()
depends=()
makedepends=(
'git'
'fasm'
'make'
)
checkdepends=()
optdepends=('lsb-release: OS information')
provides=('afetch')
conflicts=('afetch')
replaces=()
backup=()
options=()
install=
changelog=
source=("${pkgname}::git+https://github.com/sticky-tea/afetch"
)
noextract=()
md5sums=("SKIP")
build()
{
cd "$pkgname"
make all
}
package()
{
cd "$pkgname"
install -D -m755 "${srcdir}/${pkgname}/afetch" "${pkgdir}/usr/bin/afetch"
}
|