From b95a4c8bf347a4569f2956913bf0659959bcae5a Mon Sep 17 00:00:00 2001 From: haawda Date: Mon, 30 Mar 2020 17:22:25 +0200 Subject: [PATCH] adopted and updated --- .SRCINFO | 13 +++++++------ PKGBUILD | 35 ++++++++++++++++++++--------------- 2 files changed, 27 insertions(+), 21 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1a03f2a..ca14919 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,16 @@ pkgbase = ect - pkgdesc = Efficient Compression Tool (or ECT) is a ++ file optimizer. It supports PNG, JPEG, GZIP and ZIP files. - pkgver = 0.8.2 - pkgrel = 2 + pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. + pkgver = 0.8.3 + pkgrel = 1 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 arch = x86_64 - license = Apache2 + license = Apache makedepends = nasm makedepends = git - source = ect::git+https://github.com/fhanau/Efficient-Compression-Tool.git#tag=v0.8.2 - sha256sums = SKIP + depends = gcc-libs + source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f0b38f7f8b750099f14d4976beff6a107d6119ac + md5sums = SKIP pkgname = ect diff --git a/PKGBUILD b/PKGBUILD index 4ef8f64..b571136 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,34 +1,39 @@ -#Maintainer: William J. Bowman +# Contributor: William J. Bowman +# Maintainer: Stefan Husmann pkgname=ect -pkgver=0.8.2 -pkgrel=2 -pkgdesc='Efficient Compression Tool (or ECT) is a ++ file optimizer. It supports PNG, JPEG, GZIP and ZIP files.' +_pkgname=Efficient-Compression-Tool +pkgver=0.8.3 +pkgrel=1 +pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') -license=('Apache2') -source=("ect::git+https://github.com/fhanau/Efficient-Compression-Tool.git#tag=v${pkgver}") -sha256sums=('SKIP') +license=('Apache') +source=("git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f0b38f7f8b750099f14d4976beff6a107d6119ac") +md5sums=('SKIP') +depends=('gcc-libs') makedepends=('nasm' 'git') -prepare(){ - cd "${srcdir}/${pkgname}/src" +prepare() { + cd ${_pkgname} + git submodule init git submodule update --init --recursive --recommend-shallow - cd mozjpeg - autoreconf -i } build() { - cd "${srcdir}/${pkgname}/src" + cd ${_pkgname} + [ -d build ] || mkdir build + cd build + cmake -DECT_FOLDER_SUPPORT=off ../src make } package() { - cd "${srcdir}/${pkgname}/src" + cd ${_pkgname}/src PREFIX=/usr/ DESTDIR="${pkgdir}" make install - cd "${pkgdir}"/usr/bin + cd "${pkgdir}"/usr/bin # Some things expect this to be an all-caps name - ln -s ect ECT + ln -s ect ECT }