summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 382018c8b7ef7d8ed847e5cc0fe61e83d94e5969 (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
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=lzturbo
pkgver=1.2
pkgrel=1
pkgdesc="High performance lz77 based compressor"
arch=('x86_64')
url="https://sites.google.com/site/powturbo/home"
license=('custom')
source=("https://sites.google.com/site/powturbo/downloads/lzturbo.7z?attredirects=0")
sha256sums=('c5212cf0dcdbb35ebce5e3126fe8ec53bfd7618744a36b14ce08fb26bdb73d55')


prepare() {
  cd "lzturbo"

  sed -n '/IF YOU DO NOT AGREE TO/,/*$/p' "README.md" > "LICENSE"
}

package() {
  cd "lzturbo"

  install -Dm755 "lzturbo_static" "$pkgdir/usr/bin/lzturbo"
  install -Dm644 "README.md" -t "$pkgdir/usr/share/doc/lzturbo"
  install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/lzturbo"
}