summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaroslav Lichtblau2016-09-25 12:39:45 +0200
committerJaroslav Lichtblau2016-09-25 12:39:45 +0200
commit7382d9fa85d3315d042999175ec86f5a09e22914 (patch)
treede9c386458850dc894acdc7f27aa2facaa726532
parentf7ee984a294742580e87535d263cf6518298b960 (diff)
downloadaur-7382d9fa85d3315d042999175ec86f5a09e22914.tar.gz
lzlib-1.8-1
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD11
-rw-r--r--lzlib.install22
3 files changed, 13 insertions, 31 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6a948eb3fa4c..0e7b6ea746e1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,16 +1,19 @@
+# Generated by mksrcinfo v8
+# Sun Sep 25 10:39:41 UTC 2016
pkgbase = lzlib
pkgdesc = A library providing in-memory LZMA compression and decompression functions
- pkgver = 1.7
+ pkgver = 1.8
pkgrel = 1
url = http://www.nongnu.org/lzip/lzlib.html
- install = lzlib.install
arch = i686
arch = x86_64
license = GPL3
depends = gcc-libs
options = !emptydirs
- source = http://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-1.7.tar.gz
- sha256sums = 88c919dbb16a8b5409fc8ccec31d3c604551d73e84cec8c964fd639452536214
+ source = http://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-1.8.tar.gz
+ source = http://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-1.8.tar.gz.sig
+ sha256sums = 41bfa82c6ee184ed0884437dc4074ad505e64cb747432cefa97976b89045cbad
+ sha256sums = SKIP
pkgname = lzlib
diff --git a/PKGBUILD b/PKGBUILD
index ce9540da9b3f..3e13ae71d4d7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
pkgname=lzlib
-pkgver=1.7
+pkgver=1.8
pkgrel=1
pkgdesc="A library providing in-memory LZMA compression and decompression functions"
arch=('i686' 'x86_64')
@@ -10,14 +10,15 @@ url="http://www.nongnu.org/lzip/lzlib.html"
license=('GPL3')
depends=('gcc-libs')
options=('!emptydirs')
-install=$pkgname.install
-source=(http://download.savannah.gnu.org/releases/lzip/lzlib/$pkgname-$pkgver.tar.gz)
-sha256sums=('88c919dbb16a8b5409fc8ccec31d3c604551d73e84cec8c964fd639452536214')
+source=(http://download.savannah.gnu.org/releases/lzip/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
+validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742') # Antonio Diaz Diaz
+sha256sums=('41bfa82c6ee184ed0884437dc4074ad505e64cb747432cefa97976b89045cbad'
+ 'SKIP')
build() {
cd "${srcdir}"/$pkgname-$pkgver
- ./configure --prefix=/usr
+ ./configure --prefix=/usr --enable-shared
make
}
diff --git a/lzlib.install b/lzlib.install
deleted file mode 100644
index 6e6da76c41f0..000000000000
--- a/lzlib.install
+++ /dev/null
@@ -1,22 +0,0 @@
-infodir=/usr/share/info
-filelist=(lzlib.info)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-# vim:set ts=2 sw=2 et: