initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

26
lzop/PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
# 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"
}