🔒 Repository is read-only – file editing is disabled.

recipes/utils/pigz/PAGBUILD.yaml main

38 linii Raw ← Powrót
1234567891011121314151617181920212223242526272829303132333435363738
pkgname: pigz
pkgver: '2.8'
pkgrel: '3'
pkgdesc: 'Parallel implementation of the gzip file compressor'
url: 'https://www.zlib.net/pigz/'
arch: x86_64
depends: []
makedepends:
- zlib

source:
- 'https://www.zlib.net/${pkgname}/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}

  make

package: |
  cd ${pkgname}-${pkgver}

  install -Dm755 ${pkgname} \
    ${PKGDIR}/usr/bin/${pkgname} 

  pushd ${PKGDIR}/usr/bin
    ln -s pigz unpigz 
  popd

  install -Dm644 ${pkgname}.1 \
    ${PKGDIR}/usr/share/man/man1/${pkgname}.1
  install -Dm644 ${pkgname}.pdf \
    ${PKGDIR}/usr/share/doc/${pkgname}/${pkgname}.pdf
  install -Dm644 README \
    ${PKGDIR}/usr/share/licenses/${pkgname}/README