Files
extra/lzop/PKGBUILD
2025-06-22 20:39:04 -05:00

27 lines
667 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=lzop
pkgver=1.04
pkgrel=1
pkgdesc="File compressor using lzo lib"
url='https://www.lzop.org/'
arch=('i686' 'x86_64')
license=('GPL-2')
depends=('lzo')
source=(https://www.lzop.org/download/${pkgname}-${pkgver}.tar.gz)
sha512sums=('5829b4495ffefab549aa697a05c536ce593c572c9eee6004460583a0090abcd317c6074c4f981dfee6be61ac8d127f02dd37053b6cb782af64db41586a8bbb6e')
build() {
cd ${pkgname}-${pkgver}
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}