mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
main/pigz: fix symlink
install(1) dereferences all symlinks which wasn't the intend here.
This commit is contained in:
parent
02c84a9d50
commit
ced62c72c1
@ -2,7 +2,7 @@
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=pigz
|
||||
pkgver=2.8
|
||||
pkgrel=0
|
||||
pkgrel=1
|
||||
pkgdesc="Parallel implementation of gzip"
|
||||
url="https://zlib.net/pigz/"
|
||||
arch="all"
|
||||
@ -20,7 +20,8 @@ check() {
|
||||
}
|
||||
|
||||
package() {
|
||||
install -Dm755 pigz unpigz -t "$pkgdir"/usr/bin
|
||||
install -Dm755 pigz -t "$pkgdir"/usr/bin
|
||||
ln -s pigz "$pkgdir"/usr/bin/unpigz
|
||||
install -Dm644 pigz.1 -t "$pkgdir"/usr/share/man/man1
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user