summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 70b129a75eac2cda6ed0b672cd977d3fcf523fea (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
# PKGBUILD created by using cargo-aur-packer
pkgname='codeonly-git'
pkgver=1.1.0
pkgrel=1
pkgdesc='Remove annoying comments from your code'
arch=('any')
url='https://github.com/LostInTheCloud/codeonly'
license=('GPL-2.0')
sha256sums=('SKIP')
makedepends=('rust' 'cargo' 'git')
source=('codeonly-git::git+https://github.com/LostInTheCloud/codeonly')

pkgver() {
 cd "$pkgname"
 echo "$(grep '^version =' Cargo.toml|head -n1|cut -d\" -f2).$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)" | tr '-' '.'
}

build() {
   cd "$pkgname"
   cargo build --release --all-features --target-dir=target
}

check() {
  cd "$pkgname"
  cargo test --release --target-dir=target
}

package() {
  cd "$pkgname"
  install -Dm 755 target/release/codeonly -t "${pkgdir}/usr/bin"
  # install -Dm 755 LICENSE "${pkgdir}/usr/share/licenses/codeonly"
}