summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6f7b437af859a683bbc0cdaf8a8a42918374cd0b (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
# Maintainer: DevHyperCoder <arduinoleo88 at gmail dot com>

pkgname=alpc-git 
pkgver=1.0.0
pkgrel=1
pkgdesc="Aviation Language Phonetic Converter"
arch=('x86_64')
url="https://github.com/DevHyperCoder/alpc"
license=('GPL')
groups=()
depends=()
makedepends=('git' 'rust' 'cargo' ) 
provides=("${pkgname}-git")
conflicts=("${pkgname}-git")
replaces=()
backup=()
options=()
source=("git+https://github.com/DevHyperCoder/alpc.git")
noextract=()
md5sums=('SKIP')

build() {
	cd alpc
    cargo build --release
}


package() {
	cd alpc
    install -Dm755 "target/release/alpc" \
        -t "$pkgdir/usr/bin/"
}