summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorfelics@felics-tablet2016-06-27 12:14:05 +0200
committerfelics@felics-tablet2016-06-27 12:14:05 +0200
commite0fb17ed648e191618eb9ecf107c5297ba5101c3 (patch)
treec7664e1289002739db5f231f00befd70c9969bb9
parent69c00b5e61471bb0a00d9f5155ea13cde454d350 (diff)
downloadaur-e0fb17ed648e191618eb9ecf107c5297ba5101c3.tar.gz
Updated dependencies.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD12
2 files changed, 12 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c8356ff9bd2c..6648228df042 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = statifier
pkgdesc = Create portable, self-containing Linux executables: Creates from dynamically linked executables and all it's libraries one file. Note: Does not play well with VDSO, which most modern kernels have activated.
pkgver = 1.7.4
- pkgrel = 2
+ pkgrel = 3
url = http://statifier.sourceforge.net/
arch = i386
arch = i486
@@ -9,6 +9,8 @@ pkgbase = statifier
arch = i686
arch = x86_64
license = GPL2
+ depends = glibc
+ depends = lib32-glibc
source = statifier-1.7.4.tar.gz::https://sourceforge.net/projects/statifier/files/statifier/1.7.4/statifier-1.7.4.tar.gz/download
sha256sums = c8a758ee1f3604d1c6fa755e2422ac4e741008536c9065508050da69149d9f0e
diff --git a/PKGBUILD b/PKGBUILD
index d94ea69b010f..21aa4d7a7079 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,12 +5,19 @@ pkgname="${_pkgname}"
_pkgver=1.7.4
# epoch=0
pkgver="${_pkgver}"
-pkgrel=2
+pkgrel=3
pkgdesc="Create portable, self-containing Linux executables: Creates from dynamically linked executables and all it's libraries one file. Note: Does not play well with VDSO, which most modern kernels have activated."
arch=('i386' 'i486' 'i586' 'i686' 'x86_64')
url="http://statifier.sourceforge.net/"
license=('GPL2')
-# depends=('zlib' 'gnutls' 'libgcrypt')
+
+depends=(
+ 'glibc'
+)
+
+depends_x86_64=(
+ 'lib32-glibc'
+)
provides=(
)
@@ -58,5 +65,4 @@ package() {
install -dv -m 755 "${_docdir}/detailed/"
cp -av "${_unpackeddir}/doc"/* "${_docdir}/detailed/"
-
}