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

35
zimg/PKGBUILD Normal file
View File

@@ -0,0 +1,35 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=zimg
pkgver=3.0.4
pkgrel=1
pkgdesc="Scaling, colorspace conversion and dithering library"
arch=('i686' 'x86_64')
url='https://github.com/sekrit-twc/zimg'
license=('WTFPL-2.0')
depends=('gcc-libs' 'glibc')
options=('!emptydirs')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sekrit-twc/zimg/archive/release-${pkgver}.tar.gz")
sha512sums=('94beddb109f0b301f0fecf09ea2761d3707aaa1f0cc1caf682bb3d1d7dcd89164de8388e922758e274914df9c7c7c1a0a0c5192e78f88655ed4c6da0ee51995c')
prepare() {
cd ${pkgname}-release-${pkgver}
./autogen.sh
}
build() {
cd ${pkgname}-release-${pkgver}
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--disable-static
make
}
package(){
cd ${pkgname}-release-${pkgver}
make DESTDIR="${pkgdir}" install
install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/zimg/
}